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

Function IsUtf16LowSurrogate

src/String.cpp:91–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 return ch>=0xd800 && ch<0xe000;
90}
91inline static bool IsUtf16LowSurrogate(int ch)
92{
93 return ch>=0xdc00 && ch<0xe000;
94}
95inline static bool IsUtf16HighSurrogate(int ch)
96{
97 return ch>=0xd800 && ch<0xdc00;

Callers 2

Char16AdvanceFunction · 0.85
GCStringDupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected