* Skip 8-bit chars, while they are not in 'chars', until they are. */
| 654 | * Skip 8-bit chars, while they are not in 'chars', until they are. |
| 655 | */ |
| 656 | void SkipUntilCharIn(std::string_view chars) |
| 657 | { |
| 658 | size_type len = this->FindCharIn(chars); |
| 659 | this->Skip(len); |
| 660 | } |
| 661 | |
| 662 | /** |
| 663 | * Peek 8-bit chars, while they are in 'chars', until they are not. |
no test coverage detected