Class representing a lzma compressor
Details
Lzma compressor for Zarr
Public fields
level
The compression level.
format
The compression format.
Methods
Method new()
Create a new lzma compressor.
Arguments
level
The compression level, between 1 and 22.
format
only 1 is supported
Returns
A new LzmaCodec
object.
Method encode()
Compress data.
Usage
LzmaCodec$encode(buf, zarr_arr)
Arguments
buf
The un-compressed data.
zarr_arr
The ZarrArray instance.
Method decode()
Decompress data.
Usage
LzmaCodec$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
LzmaCodec$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.