Versions in this module Expand all Collapse all v0 v0.2.0 Jun 26, 2026 v0.1.0 May 5, 2026 Changes in this version + type AppendByteOrder interface + AppendUint16 func([]byte, uint16) []byte + AppendUint32 func([]byte, uint32) []byte + AppendUint64 func([]byte, uint64) []byte + String func() string + type BE struct + var BigEndian BE + func (BE) AppendUint16(b []byte, v uint16) []byte + func (BE) AppendUint32(b []byte, v uint32) []byte + func (BE) AppendUint64(b []byte, v uint64) []byte + func (BE) PutUint16(b []byte, v uint16) + func (BE) PutUint32(b []byte, v uint32) + func (BE) PutUint64(b []byte, v uint64) + func (BE) String() string + func (BE) Uint16(b []byte) uint16 + func (BE) Uint32(b []byte) uint32 + func (BE) Uint64(b []byte) uint64 + type ByteOrder interface + PutUint16 func([]byte, uint16) + PutUint32 func([]byte, uint32) + PutUint64 func([]byte, uint64) + String func() string + Uint16 func([]byte) uint16 + Uint32 func([]byte) uint32 + Uint64 func([]byte) uint64 + type LE struct + var LittleEndian LE + func (LE) AppendUint16(b []byte, v uint16) []byte + func (LE) AppendUint32(b []byte, v uint32) []byte + func (LE) AppendUint64(b []byte, v uint64) []byte + func (LE) PutUint16(b []byte, v uint16) + func (LE) PutUint32(b []byte, v uint32) + func (LE) PutUint64(b []byte, v uint64) + func (LE) String() string + func (LE) Uint16(b []byte) uint16 + func (LE) Uint32(b []byte) uint32 + func (LE) Uint64(b []byte) uint64