1
2
3
4
5
6
7
8
9
//! Collection types with consistent ordering.

pub mod map;
pub mod set;

pub use ordermap::Equivalent;

pub use self::map::Map;
pub use self::set::Set;