MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / isSurrogateRange

Function isSurrogateRange

Engine/source/core/strings/unicode.cpp:142–145  ·  view source on GitHub ↗

-----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

140
141//-----------------------------------------------------------------------------
142inline bool isSurrogateRange(U32 codepoint)
143{
144 return ( 0xd800 < codepoint && codepoint < 0xdfff );
145}
146
147inline bool isAboveBMP(U32 codepoint)
148{

Callers 4

oneUTF8toUTF32Function · 0.85
oneUTF16toUTF32Function · 0.85
oneUTF32toUTF16Function · 0.85
oneUTF32toUTF8Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected