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
I hereby apologize for the readall function. I think GZip should implement readbytes instead, and inherit readall(::IO) that just wraps the result of readbytes in a string.
The text was updated successfully, but these errors were encountered:
Yeah, it should really implement readbytes! or even better would be readavailable; as-is, the only standard IO function implemented is read(::GZipStream, ::Type{UInt8}), which means the majority of cases where a GZipStream is used generically falls back to byte-by-byte IO, which is probably terrible for performance.
I hereby apologize for the
readall
function. I think GZip should implementreadbytes
instead, and inheritreadall(::IO)
that just wraps the result ofreadbytes
in a string.The text was updated successfully, but these errors were encountered: