1//! Immutable maps and sets. See map and set modules for details.
23#![cfg_attr(not(any(feature = "rayon", feature = "pool")), no_std)]
45extern crate alloc;
67pub(crate) mod avl;
8pub(crate) mod chunk;
9pub mod map;
10pub mod set;
1112#[cfg(test)]
13mod tests;