triplets_core/chunking/mod.rs
1//! Pluggable chunking algorithms.
2//!
3//! [`ChunkingAlgorithm`] defines the extension point used by the sampler to
4//! materialize chunk candidates from record sections.
5
6mod algorithm;
7mod sliding_window;
8
9pub use algorithm::ChunkingAlgorithm;
10pub use sliding_window::SlidingWindowChunker;