//! Persistent and specialised collection types for scirs2-core.
//!
//! # Modules
//!
//! | Module | Description |
//! |--------|-------------|
//! | [`bit_vec`] | Compact bit-vector |
//! | [`flat_map`] | Flat (sorted-vec) ordered map |
//! | [`tiny_vec`] | Small-vector optimised for ≤ 4 elements |
//! | [`rrb_vec`] | Persistent radix-balanced tree vector |
pub use BitVec;
pub use FlatMap;
pub use RrbVec;
pub use TinyVec;