Versions in this module Expand all Collapse all v0 v0.8.0 Apr 14, 2026 Changes in this version + type Reader struct + func NewReader(p []byte) *Reader + func (r *Reader) Err() error + func (r *Reader) F32() float32 + func (r *Reader) Obj(n int, v encoding.BinaryUnmarshaler) + func (r *Reader) Raw(n int) []byte + func (r *Reader) Remaining() int + func (r *Reader) Str(n int) string + func (r *Reader) U16() uint16 + func (r *Reader) U32() uint32 + func (r *Reader) U32LenStr() string + func (r *Reader) U64() uint64 + func (r *Reader) U8() uint8 + func (r *Reader) U8LenStr() string + type Writer struct + func NewWriter() *Writer + func NewWriterCap(n int) *Writer + func (w *Writer) Bytes() []byte + func (w *Writer) Err() error + func (w *Writer) F32(v float32) + func (w *Writer) Obj(v encoding.BinaryMarshaler) + func (w *Writer) Raw(v []byte) + func (w *Writer) Str(v string) + func (w *Writer) U16(v uint16) + func (w *Writer) U32(v uint32) + func (w *Writer) U32LenStr(v string) + func (w *Writer) U64(v uint64) + func (w *Writer) U8(v uint8) + func (w *Writer) U8LenStr(v string)