bstr/unicode/
mod.rs

1pub use self::{
2    grapheme::{decode_grapheme, GraphemeIndices, Graphemes},
3    sentence::{SentenceIndices, Sentences},
4    whitespace::{whitespace_len_fwd, whitespace_len_rev},
5    word::{WordIndices, Words, WordsWithBreakIndices, WordsWithBreaks},
6};
7
8mod fsm;
9mod grapheme;
10mod sentence;
11mod whitespace;
12mod word;