Returns true iff `c` is a Unicode low surrogate. */
| 151 | |
| 152 | /** Returns true iff `c` is a Unicode low surrogate. */ |
| 153 | inline constexpr bool low_surrogate(char32_t c) |
| 154 | { |
| 155 | return low_surrogate_min <= c && c <= low_surrogate_max; |
| 156 | } |
| 157 | |
| 158 | /** Returns true iff `c` is a Unicode reserved noncharacter. |
| 159 |
no outgoing calls
no test coverage detected