pub type ArrayN4000<T> = ArrayN<T, 4000>;
Mina array limited to 4000 elements.
pub struct ArrayN4000<T>(Vec<T>);
0: Vec<T>