| 202 | constexpr bool is_digit_ascii(char c) { return c >= '0' && c <= '9'; } |
| 203 | |
| 204 | constexpr char to_lower_ascii(char c) { |
| 205 | return is_upper_ascii(c) ? static_cast<char>(c - 'A' + 'a') : c; |
| 206 | } |
| 207 | |
| 208 | constexpr bool needs_snake_separator(std::string_view name, size_t index) { |
| 209 | if (index == 0) |
no test coverage detected