You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The iterator in the Rust uses a BufReader out of convenience as a method for peeking for an EOF, but it is particularly inefficient, especially if the user is already using a BufReader. The only reason we need it is to peek for an EOF. We should find another way to do that with a custom Read impl.
The iterator in the Rust uses a BufReader out of convenience as a method for peeking for an EOF, but it is particularly inefficient, especially if the user is already using a BufReader. The only reason we need it is to peek for an EOF. We should find another way to do that with a custom Read impl.
This is a follow up to #102.
The text was updated successfully, but these errors were encountered: