Expand description
This is a very simple utility crate that provides a wrapper over char
values, DecodedChar
, additionally storing the original byte length of the
character in the encoded source file.
It also provides wrappers around char
iterators to produce DecodedChar
iterators from UTF-8/16 encoded sources.
Structs§
- Decoded
Char - Decoded character.
- Fallible
Utf8 Decoded - Iterator wrapper around fallible UTF-8 encoded sources.
- Fallible
Utf16 Decoded - Iterator wrapper around fallible UTF-16 encoded sources.
- Utf8
Decoded - Iterator wrapper around UTF-8 encoded sources.
- Utf16
Decoded - Iterator wrapper around UTF-16 encoded sources.
Traits§
- Decoded
Chars - Extension for
str
providing thedecoded_char
method.