| 78 | } |
| 79 | |
| 80 | std::pair<StringConsumer::size_type, char32_t> StringConsumer::PeekUtf8() const |
| 81 | { |
| 82 | auto buf = this->src.substr(this->position); |
| 83 | return DecodeUtf8(buf); |
| 84 | } |
| 85 | |
| 86 | std::string_view StringConsumer::Peek(size_type len) const |
| 87 | { |
no test coverage detected