Returns true iff `c` is a UTF-8 continuation code unit. */
| 192 | |
| 193 | /** Returns true iff `c` is a UTF-8 continuation code unit. */ |
| 194 | constexpr bool continuation(char8_type c) { return (int8_t)c < -0x40; } |
| 195 | |
| 196 | /** Given the first (and possibly only) code unit of a UTF-8-encoded code |
| 197 | point, returns the number of bytes occupied by that code point (in the |
no outgoing calls
no test coverage detected