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