Expand description
Iterator types that you should rarely need to name
Structsยง
- An
Utf8CharMergerthat also produces offsets and lengths, but can only iterate over slices. - An iterator over the
Utf8Charof a string slice, and their positions. - Decodes UTF-8 characters from a byte iterator into
Utf8Chars. - Converts an iterator of
Utf8Char(or&Utf8Char) to an iterator ofu8s. - An iterator over the codepoints in a
strrepresented asUtf8Char. - Read or iterate over the bytes of the UTF-8 representation of a codepoint.
- An
Utf16CharMergerthat also produces offsets and lengths, but can only iterate over slices. - An iterator over the codepoints in a
strrepresented asUtf16Char. - Decodes UTF-16 characters from a
u16iterator intoUtf16Chars. - Converts an iterator of
Utf16Char(or&Utf16Char) to an iterator ofu16s. - An iterator over the codepoints in a
strrepresented asUtf16Char. - Iterate over the units of the UTF-16 representation of a codepoint.