pub fn decompress(
preprocessors: &[Preprocessor],
components: &[Component],
compressed: &[u8],
) -> Result<Vec<u8>, Error>Expand description
Dempress the compressed data with LC using zero or more preprocessors
and one or more components.
The compressed data must have been compressed using the same
preprocessors and components.
ยงErrors
Errors with
Error::TooFewComponentsif nocomponentsare givenError::TooManyComponentsif too manycomponentsare givenError::ExcessiveCompressedDataif thecompresseddata is too largeError::DecompressionFailedif decompression with LC failedError::ExcessiveDecompressedDataif the decompressed data is too large