| 45 | return token.size() == 1 && std::isspace(static_cast<unsigned char>(token.front())) != 0; |
| 46 | } |
| 47 | |
| 48 | bool is_ascii_line_break(std::string_view token) noexcept { |
| 49 | return token == "\n" || token == "\r"; |
| 50 | } |
| 51 | |
| 52 | bool is_horizontal_ascii_space(std::string_view token) noexcept { |
| 53 | return token == " " || token == "\t" || token == "\f" || token == "\v"; |
no outgoing calls
no test coverage detected