Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
95
inline static bool IsUtf16HighSurrogate(int ch)
96
{
97
return ch>=0xd800 && ch<0xdc00;
98
}
99
100
static int UTF8Bytes(int c)
101
{
Callers
2
Char16Advance
Function · 0.85
GCStringDup
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected