subms-merge-iterator 0.10.0

submillisecond.com cookbook recipe - storage: subms-merge-iterator. N-way merge of sorted streams via min-heap.
Documentation
//! 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 = "reverse")]
pub mod reverse;

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

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

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