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