bstr/unicode/
mod.rs

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

mod fsm;
mod grapheme;
mod sentence;
mod whitespace;
mod word;