A high-performance Go library for bit packing and unpacking integers of various bit widths. Part of the parquet-go ecosystem.
Includes AMD64 assembly optimizations with pure Go fallback for portability.
go get github.com/parquet-go/bitpackimport "github.com/parquet-go/bitpack"
// Pack int32 values with 3-bit width
values := []int32{1, 2, 3, 4, 5}
bitWidth := uint(3)
packedSize := bitpack.ByteCount(uint(len(values)) * bitWidth)
dst := make([]byte, packedSize+bitpack.PaddingInt32)
bitpack.PackInt32(dst, values, bitWidth)
// Unpack int32 values
unpacked := make([]int32, len(values))
bitpack.UnpackInt32(unpacked, dst, bitWidth)For complete working examples, see the examples directory.