Expand description
Iterator types that you should rarely need to name
Structsยง
- An
Utf8CharMerger
that also produces offsets and lengths, but can only iterate over slices. - An iterator over the
Utf8Char
of a string slice, and their positions. - Decodes UTF-8 characters from a byte iterator into
Utf8Char
s. - Converts an iterator of
Utf8Char
(or&Utf8Char
) to an iterator ofu8
s. - An iterator over the codepoints in a
str
represented asUtf8Char
. - Read or iterate over the bytes of the UTF-8 representation of a codepoint.
- An
Utf16CharMerger
that also produces offsets and lengths, but can only iterate over slices. - An iterator over the codepoints in a
str
represented asUtf16Char
. - Decodes UTF-16 characters from a
u16
iterator intoUtf16Char
s. - Converts an iterator of
Utf16Char
(or&Utf16Char
) to an iterator ofu16
s. - An iterator over the codepoints in a
str
represented asUtf16Char
. - Iterate over the units of the UTF-16 representation of a codepoint.