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