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