| 41 | bool sentence_break = false; |
| 42 | }; |
| 43 | |
| 44 | bool is_ascii_space(std::string_view token) noexcept { |
| 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 { |
no test coverage detected