| ByteArrayCodec |
Encodes an array of numbers of specified types as raw bytes.
|
| Classifier |
|
| Codec |
A library of codec implementations and provider to codec-specific constants such as encoder name, version, and
minimal version of the data to decode.
|
| DeltaCodec |
Stores the input integer array as an array of consecutive differences.
|
| FixedPointCodec |
Converts an array of floating point numbers to a Int32Array multiplied by a given factor.
|
| IntegerPackingCodec |
|
| IntervalQuantizationCodec |
Converts an array of floating point numbers to a Int32Array where the values are quantized within a
given interval into specified number of discrete steps.
|
| MessagePackCodec |
Decodes and encodes MessagePack data.
|
| RunLengthCodec |
Represents each integer value in the input as a pair of (value, number of repeats) and stores the result
sequentially as Int32Array.
|
| StringArrayCodec |
Stores an array of strings as a concatenation of all unique strings, an array of offsets describing substrings,
and indices into the offset array.
|