aboutsummaryrefslogtreecommitdiff
path: root/src/unicode/mod.rs
blob: 60318f437eb8f4fda5007e61805e93fcd51bd1cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub use self::grapheme::{decode_grapheme, GraphemeIndices, Graphemes};
pub use self::sentence::{SentenceIndices, Sentences};
pub use self::whitespace::{whitespace_len_fwd, whitespace_len_rev};
pub use self::word::{
    WordIndices, Words, WordsWithBreakIndices, WordsWithBreaks,
};

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