btree_plus_store/lib.rs
1#![doc = include_str!("../README.md")]
2
3pub use map::BTreeMap;
4pub use set::BTreeSet;
5pub use store::BTreeStore;
6
7/// Immutable map and set which implement [Copy] but don't drop or deallocate its contents; instead,
8/// the store has a new helper which performs a special variant of
9/// [tracing garbage collection](https://en.wikipedia.org/wiki/Tracing_garbage_collection)
10#[cfg(feature = "copyable")]
11pub mod copyable;
12mod cursor;
13pub mod map;
14mod node;
15pub mod set;
16mod store;
17/// Misc utility functions
18mod utils;