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
Perform large Vec reads in chunks
This avoids trying to pre-allocate too large of a Vec
if the amount of bytes requested is much larger
than the number of bytes in the input stream.
Ensure signed reads/writes have at least 1 bit for sign
This would cause underflow panics before, but should now
generate proper errors at runtime or compile-time.