* Peek data until the first occurrence of 8-bit char 'c'. * @param c Separator char. * @param sep Whether to include/exclude 'c' from the result. */
| 754 | * @param sep Whether to include/exclude 'c' from the result. |
| 755 | */ |
| 756 | [[nodiscard]] std::string_view PeekUntilChar(char c, SeparatorUsage sep) const |
| 757 | { |
| 758 | return this->PeekUntil({&c, 1}, sep); |
| 759 | } |
| 760 | /** |
| 761 | * Read data until the first occurrence of 8-bit char 'c', and advance reader. |
| 762 | * @param c Separator char. |
no test coverage detected