| 154 | } |
| 155 | |
| 156 | std::string_view StringConsumer::PeekUntilUtf8(char32_t c, SeparatorUsage sep) const |
| 157 | { |
| 158 | auto [data, len] = EncodeUtf8(c); |
| 159 | return PeekUntil({data, len}, sep); |
| 160 | } |
| 161 | |
| 162 | std::string_view StringConsumer::ReadUntilUtf8(char32_t c, SeparatorUsage sep) |
| 163 | { |
no test coverage detected