unobtanium_segmenter/chain/
mod.rs

1//! Helpers for applying segmentation, augmentation and normalization to iterators of tokens.
2
3mod augmenter;
4mod segmenter;
5mod start_segmentation_chain;
6
7pub use augmenter::ChainAugmenter;
8pub use segmenter::ChainSegmenter;
9pub use start_segmentation_chain::StartSegmentationChain;