(&self, data: &[u8], output: &mut Vec<u8>)
| 264 | } |
| 265 | |
| 266 | fn compress_append(&self, data: &[u8], output: &mut Vec<u8>) -> Result<()> { |
| 267 | output.extend_from_slice(data); |
| 268 | Ok(()) |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | // --- LZ4 Implementation --- |
no test coverage detected