# Functions
DecodeFlag decodes a flag and updates the provided []byte so that it starts immediately after the encoded flag.
DecodeFloat64LE deserializes 64-bit floating-point values that have been encoded with EncodeFloat64LE.
DecodeUvarint64 deserializes 64-bit unsigned integers that have been encoded using EncodeUvarint64.
DecodeVarfloat64 deserializes 64-bit floating-point values that have been encoded with EncodeVarfloat64.
DecodeVarint32 deserializes 32-bit signed integers that have been encoded using EncodeVarint64.
DecodeVarint64 deserializes 64-bit signed integers that have been encoded using EncodeVarint32.
EncodeFlag encodes a flag and appends its content to the provided []byte.
EncodeFloat64LE serializes 64-bit floating-point values, starting with the least significant bytes.
EncodeUvarint64 serializes 64-bit unsigned integers 7 bits at a time, starting with the least significant bits.
EncodeVarfloat64 serializes 64-bit floating-point values using a method that is similar to the varuint encoding and that is space-efficient for non-negative integer values.
EncodeVarint64 serializes 64-bit signed integers using zig-zag encoding, which ensures small-scale integers are turned into unsigned integers that have leading zeros, whether they are positive or negative, hence allows for space-efficient varuint encoding of those values.
No description provided by the author
Uvarint64Size returns the number of bytes that EncodeUvarint64 encodes a 64-bit unsigned integer into.
Varfloat64Size returns the number of bytes that EncodeVarfloat64 encodes a 64-bit floating-point value into.
Varint64Size returns the number of bytes that EncodeVarint64 encodes a 64-bit signed integer into.
# Constants
No description provided by the author
# Variables
Encodes N contiguous bins, specifiying the count of each one Encoding format: - [byte] flag - [uvarint64] number of bins N - [varint64] index of first bin - [varint64] difference between two successive indexes - [varfloat64] count of first bin - [varfloat64] count of second bin - ..
Encodes N bins whose counts are each equal to 1.
Encodes N bins, each one with its index and its count.
Encode the total count.
No description provided by the author
No description provided by the author
Encodes log-like index mappings, specifying the base (gamma) and the index offset The subflag specifies the interpolation method.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Encode the summary statistics.
No description provided by the author
No description provided by the author
No description provided by the author
Encodes the count of the zero bin.