Construct a reader over str that limits lines to max_line_length bytes.
Declared in <util/string.h>
explicit
LineReader(
std::string_view str,
size_t max_line_length);
| Name | Description |
|---|---|
| str | The buffer to read from. |
| max_line_length | Maximum length of a line returned by ReadLine. |