* Peek 8-bit chars, while they are not in 'chars', until they are. * @return Non-matching chars. */
| 637 | * @return Non-matching chars. |
| 638 | */ |
| 639 | [[nodiscard]] std::string_view PeekUntilCharIn(std::string_view chars) const |
| 640 | { |
| 641 | size_type len = this->FindCharIn(chars); |
| 642 | return this->Peek(len); |
| 643 | } |
| 644 | /** |
| 645 | * Read 8-bit chars, while they are not in 'chars', until they are; and advance reader. |
| 646 | * @return Non-matching chars. |
no test coverage detected