| 127 | } |
| 128 | |
| 129 | StringConsumer::size_type StringConsumer::FindCharNotIn(std::string_view chars) const |
| 130 | { |
| 131 | assert(!chars.empty()); |
| 132 | auto buf = this->src.substr(this->position); |
| 133 | return buf.find_first_not_of(chars); |
| 134 | } |
| 135 | |
| 136 | std::string_view StringConsumer::PeekUntil(std::string_view str, SeparatorUsage sep) const |
| 137 | { |
no test coverage detected