| 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'); |
| 1038 | } |
| 1039 | |
| 1040 | constexpr bool is_windows_drive_letter(std::string_view input) noexcept { |
| 1041 | return input.size() >= 2 && |
no test coverage detected