novakv 1.0.0

An embedded, ordered key-value store for Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Two-level iterator: index iterator over data-block iterators.
//!
//! Used internally by [`crate::table::Table`] to lazy-load data
//! blocks: the outer iterator walks the index block, the inner
//! materializes one data block at a time. Public for embedders that
//! want to compose the same pattern over their own block sources.

mod two_level_iter;
pub use two_level_iter::*;