MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / IsUtf16HighSurrogate

Function IsUtf16HighSurrogate

src/String.cpp:95–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93 return ch>=0xdc00 && ch<0xe000;
94}
95inline static bool IsUtf16HighSurrogate(int ch)
96{
97 return ch>=0xd800 && ch<0xdc00;
98}
99
100static int UTF8Bytes(int c)
101{

Callers 2

Char16AdvanceFunction · 0.85
GCStringDupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected