* Is the given character a lead surrogate code point? * @param c The character to test. * @return True if the character is a lead surrogate code point. */
| 63 | * @return True if the character is a lead surrogate code point. |
| 64 | */ |
| 65 | inline bool Utf16IsLeadSurrogate(uint c) |
| 66 | { |
| 67 | return c >= 0xD800 && c <= 0xDBFF; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Is the given character a lead surrogate code point? |
no outgoing calls
no test coverage detected