MCPcopy Create free account
hub / github.com/Tencent/libpag / InRange

Function InRange

src/platform/web/NativeTextShaper.cpp:26–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24namespace pag {
25template <typename T>
26static inline bool InRange(T u, T lo, T hi) {
27 return lo <= u && u <= hi;
28}
29
30static inline bool CodepointIsRegionalIndicator(int32_t u) {
31 return InRange<int32_t>(u, 0x1F1E6u, 0x1F1FFu);

Callers 1

CheckContinuationsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected