1//! A frozen (immutable) ordered map and set implementation. 2 3pub mod map; 4pub mod set; 5 6pub use crate::{map::FrozenMap, set::FrozenSet};