1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! Common collection interfaces and implementations. #![no_std] extern crate alloc; #[cfg(any(feature = "std", test))] extern crate std; mod collection; mod cons; mod join; mod map; mod maps; pub use collection::*; pub use cons::*; pub use join::*; pub use map::*; pub use maps::*;