chiralmap 0.1.3

Left-Right map using IndexMap
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A map implementation merging an [`indexmap`](https://docs.rs/indexmap)
//! with the syncronization of [`left_right`](https://docs.rs/left-right).
//!
//! See [`ChiralMap`] For usage.

mod chiral_map;

#[cfg(feature = "metrics")]
mod metrics;

pub use chiral_map::ChiralMap;
pub use chiral_map::ChiralMapConfig;
pub use chiral_map::ChiralReader;