diff options
Diffstat (limited to 'vendor/bstr/src/unicode/mod.rs')
-rw-r--r-- | vendor/bstr/src/unicode/mod.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/bstr/src/unicode/mod.rs b/vendor/bstr/src/unicode/mod.rs new file mode 100644 index 0000000..80638e8 --- /dev/null +++ b/vendor/bstr/src/unicode/mod.rs @@ -0,0 +1,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; |