* Read 8-bit chars, while they are in 'chars', until they are not; and advance reader. * @return Matching chars. */
| 673 | * @return Matching chars. |
| 674 | */ |
| 675 | [[nodiscard]] std::string_view ReadUntilCharNotIn(std::string_view chars) |
| 676 | { |
| 677 | size_type len = this->FindCharNotIn(chars); |
| 678 | return this->Read(len); |
| 679 | } |
| 680 | /** |
| 681 | * Skip 8-bit chars, while they are in 'chars', until they are not. |
| 682 | */ |
no test coverage detected