* Peek 8-bit chars, while they are in 'chars', until they are not. * @return Matching chars. */
| 664 | * @return Matching chars. |
| 665 | */ |
| 666 | [[nodiscard]] std::string_view PeekUntilCharNotIn(std::string_view chars) const |
| 667 | { |
| 668 | size_type len = this->FindCharNotIn(chars); |
| 669 | return this->Peek(len); |
| 670 | } |
| 671 | /** |
| 672 | * Read 8-bit chars, while they are in 'chars', until they are not; and advance reader. |
| 673 | * @return Matching chars. |
no test coverage detected