| 120 | } |
| 121 | |
| 122 | StringConsumer::size_type StringConsumer::FindCharIn(std::string_view chars) const |
| 123 | { |
| 124 | assert(!chars.empty()); |
| 125 | auto buf = this->src.substr(this->position); |
| 126 | return buf.find_first_of(chars); |
| 127 | } |
| 128 | |
| 129 | StringConsumer::size_type StringConsumer::FindCharNotIn(std::string_view chars) const |
| 130 | { |
no test coverage detected