Class representing a ZSTD compressor
Details
ZSTD compressor for Zarr
Public fields
level
The compression level.
Methods
Method new()
Create a new ZSTD compressor.
Arguments
level
The compression level, between 1 and 22.
Returns
A new ZstdCodec
object.
Method encode()
Compress data.
Usage
ZstdCodec$encode(buf, zarr_arr)
Arguments
buf
The un-compressed data.
zarr_arr
The ZarrArray instance.
Method decode()
Decompress data.
Usage
ZstdCodec$decode(buf, zarr_arr)
Arguments
buf
The compressed data.
zarr_arr
The ZarrArray instance.
Returns
Un-compressed data.
Method get_config()
Get Configuration
Method clone()
The objects of this class are cloneable with this method.
Usage
ZstdCodec$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.