1 // This module implements the WTF-8 encoding specification: 2 // https://simonsapin.github.io/wtf-8/ 3 4 use super::EncodingError; 5 use super::Result; 6 7 mod code_points; 8 pub(super) use code_points::CodePoints; 9 10 mod convert; 11 pub(super) use convert::encode_wide; 12 pub(super) use convert::DecodeWide; 13 14 if_raw_str! { 15 mod string; 16 pub(crate) use string::ends_with; 17 pub(crate) use string::starts_with; 18 } 19