immutable_chunkmap/
lib.rs

1//! Immutable maps and sets. See map and set modules for details.
2
3#![cfg_attr(not(any(feature = "rayon", feature = "pool")), no_std)]
4
5extern crate alloc;
6
7pub(crate) mod avl;
8pub(crate) mod chunk;
9pub mod map;
10pub mod set;
11
12#[cfg(test)]
13mod tests;