| 1032 | constexpr bool is_digit(char x) noexcept { return (x >= '0') & (x <= '9'); } |
| 1033 | |
| 1034 | constexpr char to_lower(char x) noexcept { return (x | 0x20); } |
| 1035 | |
| 1036 | constexpr bool is_alpha(char x) noexcept { |
| 1037 | return (to_lower(x) >= 'a') && (to_lower(x) <= 'z'); |