Function init [src]
Prototype
pub fn init(s: []const u16) Utf16LeIterator Parameters
s: []const u16 Source
pub fn init(s: []const u16) Utf16LeIterator {
return Utf16LeIterator{
.bytes = mem.sliceAsBytes(s),
.i = 0,
};
}