1//! `x-map` is a crate intended to add some more map and vector implementations which are fast, 2//! and flexible in their usage environments. 3 4pub mod maps; 5pub mod error; 6pub mod result; 7 8#[cfg(test)] 9mod tests; 10mod util;