Expand description
UTF-8 and UTF-16 decoding iterators
Structs§
- Decode
Utf16 - An iterator that decodes UTF-16 encoded code points from an iterator of
u16
s. - Decode
Utf16 Error - An error that can be returned when decoding UTF-16 code points.
Functions§
- decode_
utf16 🔒 - Creates an iterator over the UTF-16 encoded code points in
iter
, returning unpaired surrogates asErr
s. Seechar::decode_utf16
.