1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
pub mod array;

#[cfg(feature = "serde-derive")]
pub mod serde_derive;

#[cfg(feature = "serde-derive")]
#[doc(hidden)]
pub use serde_derive::*;

pub use array::Array;
pub type SmallArray<T> = array::Array<T, u8>;
pub type MediumArray<T> = array::Array<T, u16>;
pub type LargeArray<T> = array::Array<T, u32>;