MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / isUtf16LeadSurrogate

Function isUtf16LeadSurrogate

source/core/StarUnicode.cpp:236–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234}
235
236bool isUtf16LeadSurrogate(Utf32Type codepoint) {
237 return codepoint >= MIN_LEAD && codepoint <= MAX_LEAD;
238}
239
240bool isUtf16TrailSurrogate(Utf32Type codepoint) {
241 return codepoint >= MIN_TRAIL && codepoint <= MAX_TRAIL;

Callers 5

parseStringMethod · 0.85
parseBackslashMethod · 0.85
hexStringToUtf32Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected