holt 0.2.0

An adaptive-radix-tree metadata storage engine for path-shaped keys, with per-blob concurrency and crash-safe persistence.
Documentation
1
2
3
4
5
6
7
8
//! Range-scan surface — the iterator types returned by
//! [`Tree::range`](crate::Tree::range) and its variants.
//!
//! The scan walker itself lives in the crate-private `engine`
//! module; this module curates the public-facing iterator types
//! so the engine can stay `pub(crate)`.

pub use crate::engine::{RangeBuilder, RangeEntry, RangeIter};