1//! Collection types with consistent ordering. 2 3pub mod map; 4pub mod set; 5 6pub use ordermap::Equivalent; 7 8pub use self::map::Map; 9pub use self::set::Set;