1//! This crate provides data collections such as `DisjointVec` and 2//! `DisjointHashMap` where items are categorized into disjoint *classes*. 3pub mod hash_map; 4pub mod vec; 5 6pub use hash_map::DisjointHashMap; 7pub use vec::DisjointVec;