* Skip 8-bit chars, while they are in 'chars', until they are not. */
| 681 | * Skip 8-bit chars, while they are in 'chars', until they are not. |
| 682 | */ |
| 683 | void SkipUntilCharNotIn(std::string_view chars) |
| 684 | { |
| 685 | size_type len = this->FindCharNotIn(chars); |
| 686 | this->Skip(len); |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * Treatment of separator characters. |
no test coverage detected