//! Text chunking: the `Chunker` trait and all built-in implementations.
//!
//! Each chunker takes a `&str` and returns a `Vec<Chunk>`.
use crateChunk;
/// The core chunking interface.
pub use FixedLength;
pub use ParentChild;
pub use SentenceToken;
pub use TokenCount;