1 2 3 4 5 6 7
mod static_vector; pub use self::static_vector::StaticVector; #[cfg(feature = "alloc")] mod dynamic_vector; #[cfg(feature = "alloc")] pub use self::dynamic_vector::DynamicVector;