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