| 114 | } |
| 115 | |
| 116 | StringConsumer::size_type StringConsumer::FindUtf8(char32_t c) const |
| 117 | { |
| 118 | auto [data, len] = EncodeUtf8(c); |
| 119 | return this->Find({data, len}); |
| 120 | } |
| 121 | |
| 122 | StringConsumer::size_type StringConsumer::FindCharIn(std::string_view chars) const |
| 123 | { |
no test coverage detected