Versions in this module Expand all Collapse all v0 v0.2.0 Apr 21, 2026 Changes in this version + func Decoder(b []byte, v *[]byte) error + func Encoder(v []byte) ([]byte, error) + func StreamDecoder(r io.Reader, v *[]byte) error + func StreamEncoder(w io.Writer, v []byte) error v0.1.0 Apr 10, 2026 Changes in this version + type Codec struct + func NewCodec() *Codec + func (Codec) Decode(b []byte, v *[]byte) error + func (Codec) Encode(v []byte) ([]byte, error) + type StreamCodec struct + func NewStreamCodec() *StreamCodec + func (StreamCodec) Decode(r io.Reader, v *[]byte) error + func (StreamCodec) Encode(w io.Writer, v []byte) error