uniworld 0.2.0

Correct Unicode text handling for every script: bidi, line breaking, segmentation, normalization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! UAX #29 Unicode Text Segmentation.
//!
//! Grapheme cluster, word, and sentence boundaries for cursor movement,
//! backspace, truncation, and character counting.

mod grapheme;
mod sentence;
mod word;

pub use grapheme::{grapheme_boundaries, grapheme_cluster_boundaries, GraphemeClusterBoundaries};
pub use sentence::sentence_boundaries;
pub use word::word_boundaries;