1 2 3 4 5 6 7 8
//! Specification structs for generating collections, with guarantees on the size //! and/or elements. mod array; mod vec; pub use array::*; pub use vec::*;