pub fn decompress_into(
encoded: &[u8],
decoded: AnyArrayViewMut<'_>,
) -> Result<(), ZstdCodecError>Expand description
Decompress the encoded data into a decoded array using Zstandard.
ยงErrors
Errors with
ZstdCodecError::HeaderDecodeFailedif decoding the header failedZstdCodecError::MismatchedDecodeIntoArrayif thedecodedarray is of the wrong dtype or shapeZstdCodecError::HeaderDecodeFailedif decoding the header failedZstdCodecError::DecodeExcessiveEncodedDataif the encoded data contains excessive trailing data junkZstdCodecError::DecodeProducedLessif decoding produced less data than expectedZstdCodecError::ZstdDecodeFailedif an opaque decoding error occurred