Closed gendx closed 7 years ago
The decompressor currently writes all the data to a Vec<u8>. The io::Write trait should be supported instead. Such implementation requires to add an internal buffer to maintain the LZ dictionary.
Vec<u8>
io::Write
The decompressor currently writes all the data to a
Vec<u8>
. Theio::Write
trait should be supported instead. Such implementation requires to add an internal buffer to maintain the LZ dictionary.