rust-linereader
rust-linereader copied to clipboard
A fast Rust line reader
Results
2
rust-linereader issues
Sort by
recently updated
recently updated
newest added
Way to differentate file that ends without a newline vs a line that was truncated to the buffer size
When `next_batch()` returns a slice that doesn't end in the delimiter there's no easy way to tell whether this is because there's nothing more to read or because the line...
`next_batch()` still requires unnecessary copying if the batch is being sent to another thread. Add a method that's effectively a greedy read_until(), filling a user-provided buffer directly from the reader...