Function core::char::decode::decode_utf16
source · pub(super) fn decode_utf16<I: IntoIterator<Item = u16>>(
iter: I
) -> DecodeUtf16<I::IntoIter> ⓘ
Expand description
Creates an iterator over the UTF-16 encoded code points in iter
,
returning unpaired surrogates as Err
s. See char::decode_utf16
.