pub fn decompress_into(
encoded: &[u8],
decoded: AnyArrayViewMut<'_>,
) -> Result<(), ZfpCodecError>
Expand description
Decompress the encoded
data into a decoded
array using ZFP.
ยงErrors
Errors with
ZfpCodecError::HeaderDecodeFailed
if decoding the header failedZfpCodecError::DecodeUnknownDtype
if the encoded data uses an unknown dtypeZfpCodecError::MismatchedDecodeIntoArray
if thedecoded
array is of the wrong dtype or shapeZfpCodecError::ZfpDecodeFailed
if an opaque decoding error occurred