| 234 | } |
| 235 | |
| 236 | bool isUtf16LeadSurrogate(Utf32Type codepoint) { |
| 237 | return codepoint >= MIN_LEAD && codepoint <= MAX_LEAD; |
| 238 | } |
| 239 | |
| 240 | bool isUtf16TrailSurrogate(Utf32Type codepoint) { |
| 241 | return codepoint >= MIN_TRAIL && codepoint <= MAX_TRAIL; |
no outgoing calls
no test coverage detected