bstr 0.2.14

A string type that is not required to be valid UTF-8.
Documentation
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;