rust-linereader icon indicating copy to clipboard operation
rust-linereader copied to clipboard

A fast Rust line reader

Results 2 rust-linereader issues
Sort by recently updated
recently updated
newest added

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...