subms-merge-iterator 0.5.0

submillisecond.com cookbook recipe - storage: subms-merge-iterator. N-way merge of sorted streams via min-heap.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Opt-in feature catalog. Each submodule is gated by its own Cargo
//! feature flag and adds a specific capability to the base k-way merge
//! iterator without bloating the core build.
//!
//! See `Cargo.toml` `[features]` for the catalog + the recipe writeup
//! for per-feature p99 + use-case guidance.

#[cfg(feature = "seek-to")]
pub mod seek;

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

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

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