Versions in this module Expand all Collapse all v0 v0.1.0 Jun 23, 2026 Changes in this version + var ErrOverflow = errors.New("aki/encoding: varint overflows 64 bits") + var ErrTruncated = errors.New("aki/encoding: truncated input") + func AppendF64(dst []byte, v float64) []byte + func AppendU16(dst []byte, v uint16) []byte + func AppendU32(dst []byte, v uint32) []byte + func AppendU32BE(dst []byte, v uint32) []byte + func AppendU64(dst []byte, v uint64) []byte + func AppendU64BE(dst []byte, v uint64) []byte + func AppendUvarint(dst []byte, v uint64) []byte + func AppendVarint(dst []byte, v int64) []byte + func F64(b []byte) float64 + func PutU16(b []byte, v uint16) + func PutU32(b []byte, v uint32) + func PutU64(b []byte, v uint64) + func U16(b []byte) uint16 + func U32(b []byte) uint32 + func U32BE(b []byte) uint32 + func U64(b []byte) uint64 + func U64BE(b []byte) uint64 + func Unzigzag(u uint64) int64 + func Uvarint(src []byte) (uint64, int, error) + func Varint(src []byte) (int64, int, error) + func Zigzag(v int64) uint64