immutable-chunkmap 0.5.9

A cache efficient immutable map and set with lookup performance equivalent to BTreeMap and BTreeSet, fast batch insert and update methods, and efficient implementations of all set operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]
//! Immutable maps and sets. See map and set modules for details.

#[macro_use] extern crate packed_struct_codegen;

pub(crate) mod chunk;
pub(crate) mod avl;
pub mod map;
pub mod set;

#[cfg(test)]
mod tests;