Skip to main content

rapidgzip_core/parallel/
mod.rs

1//! Building blocks for rapidgzip's speculative marker/window algorithm.
2//!
3//! These types are public only as a module for architectural documentation and
4//! focused benchmarking; the stable decoder API exposes only validated
5//! [`crate::DeflateIndex`] checkpoints, not these internal speculative blocks.
6
7pub(crate) mod adaptive;
8pub(crate) mod admission;
9pub(crate) mod deflate;
10mod marker;
11
12pub use marker::{MarkerBuffer, MarkerError, Symbol, Window};