Returns true iff `c` is a Unicode high surrogate. */
| 145 | |
| 146 | /** Returns true iff `c` is a Unicode high surrogate. */ |
| 147 | inline constexpr bool high_surrogate(char32_t c) |
| 148 | { |
| 149 | return high_surrogate_min <= c && c <= high_surrogate_max; |
| 150 | } |
| 151 | |
| 152 | /** Returns true iff `c` is a Unicode low surrogate. */ |
| 153 | inline constexpr bool low_surrogate(char32_t c) |
no outgoing calls
no test coverage detected