| 1026 | } |
| 1027 | |
| 1028 | constexpr bool has_hex_prefix(std::string_view input) { |
| 1029 | return input.size() >= 2 && has_hex_prefix_unsafe(input); |
| 1030 | } |
| 1031 | |
| 1032 | constexpr bool is_digit(char x) noexcept { return (x >= '0') & (x <= '9'); } |
| 1033 |
no test coverage detected