* Read 8-bit chars, while they are not in 'chars', until they are; and advance reader. * @return Non-matching chars. */
| 646 | * @return Non-matching chars. |
| 647 | */ |
| 648 | [[nodiscard]] std::string_view ReadUntilCharIn(std::string_view chars) |
| 649 | { |
| 650 | size_type len = this->FindCharIn(chars); |
| 651 | return this->Read(len); |
| 652 | } |
| 653 | /** |
| 654 | * Skip 8-bit chars, while they are not in 'chars', until they are. |
| 655 | */ |
no test coverage detected