Categorygithub.com/gonuts/binary
modulepackage
0.2.0
Repository: https://github.com/gonuts/binary.git
Documentation: pkg.go.dev

# README

Compact binary encoding for Go

The Go standard library package encoding/binary provides encoding/decoding of fixed-size Go values or slices of same. This package extends support to arbitrary, variable-sized values by prefixing these values with their varint-encoded size, recursively. It expects the encoded type and decoded type to match exactly and makes no attempt to reconcile or check for any differences.

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
NewStrictEncoder creates an encoder similar to NewEncoder, however if this encoder attempts to encode a struct and the struct has no encodable fields an error is returned whereas the encoder returned from NewEncoder will simply not write anything to `w`.
No description provided by the author

# Variables

No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author