hash-chain 0.3.2

A tiered hashmap and hashset implementation that allows for easily representing lexically scoped variables
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod error;
mod map;
mod set;
#[cfg(feature = "imutable")]
mod imutable;

pub use error::Error;
pub use map::ChainMap;
pub use set::ChainSet;
#[cfg(feature = "imutable")]
pub use imutable::LockedChainMap;