MCPcopy Index your code
hub / github.com/RustPython/RustPython / decompress_vec

Method decompress_vec

crates/stdlib/src/bz2.rs:40–47  ·  view source on GitHub ↗
(
            &mut self,
            input: &[u8],
            output: &mut Vec<u8>,
            (): Self::Flush,
        )

Source from the content-addressed store, hash-verified

38 self.total_in()
39 }
40 fn decompress_vec(
41 &mut self,
42 input: &[u8],
43 output: &mut Vec<u8>,
44 (): Self::Flush,
45 ) -> Result<Self::Status, Self::Error> {
46 self.decompress_vec(input, output)
47 }
48 }
49
50 impl DecompressStatus for Status {

Callers 1

_decompress_chunksFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected