grapheme/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod grapheme;
4pub mod grapheme_owned;
5pub mod graphemes;
6pub(crate) mod modification;
7
8pub use grapheme::Grapheme;
9pub use grapheme_macro::{g, gs};
10pub use grapheme_owned::{GraphemeOwned, MaybeGraphemeOwned};
11pub use graphemes::Graphemes;
12
13pub(crate) use modification::{Modification, to_modified};
14
15/// Commonly used functions, traits and types.
16pub mod prelude {
17    pub use super::{Grapheme, GraphemeOwned, Graphemes, MaybeGraphemeOwned, g, gs};
18}