Function utf16IsHighSurrogate [src]

Prototype

pub fn utf16IsHighSurrogate(c: u16) bool

Parameters

c: u16

Source

pub fn utf16IsHighSurrogate(c: u16) bool { return c & ~@as(u16, 0x03ff) == 0xd800; }