subms-treap 0.10.0

submillisecond.com cookbook recipe - ordered-index: subms-treap. Probabilistic balanced BST (random priorities, heap-on-priority + BST-on-key).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Opt-in treap feature catalog. Each submodule is gated by its own
//! Cargo feature flag and adds a focused capability without bloating
//! the base treap build.
//!
//! See `Cargo.toml` `[features]` for the catalog + the cookbook page
//! for the per-feature p99 + memory cost + composition guidance.

#[cfg(feature = "persistent")]
pub mod persistent;

#[cfg(feature = "merge-split")]
pub mod merge_split;

#[cfg(feature = "concurrent-reads")]
pub mod concurrent_reads;