triplets-core 0.21.1-alpha

Core types, traits, and algorithms for the triplets data pipeline framework.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Pluggable chunking algorithms.
//!
//! [`ChunkingAlgorithm`] defines the extension point used by the sampler to
//! materialize chunk candidates from record sections.

mod algorithm;
mod sliding_window;

pub use algorithm::ChunkingAlgorithm;
pub use sliding_window::SlidingWindowChunker;