| 89 | return ch>=0xd800 && ch<0xe000; |
| 90 | } |
| 91 | inline static bool IsUtf16LowSurrogate(int ch) |
| 92 | { |
| 93 | return ch>=0xdc00 && ch<0xe000; |
| 94 | } |
| 95 | inline static bool IsUtf16HighSurrogate(int ch) |
| 96 | { |
| 97 | return ch>=0xd800 && ch<0xdc00; |
no outgoing calls
no test coverage detected