| 2239 | bool is_digit() const noexcept { return !empty() && contains_only(digits_set()); } |
| 2240 | bool is_lower() const noexcept { return !empty() && contains_only(ascii_lowercase_set()); } |
| 2241 | bool is_space() const noexcept { return !empty() && contains_only(whitespaces_set()); } |
| 2242 | bool is_upper() const noexcept { return !empty() && contains_only(ascii_uppercase_set()); } |
| 2243 | bool is_printable() const noexcept { return empty() || contains_only(ascii_printables_set()); } |
| 2244 |
nothing calls this directly
no test coverage detected