# Functions
DecInt64 decodes a slice of 8 bytes into an int64.
DecUint64 decodes a slice of 8 bytes into a uint64.
EncInt64 encodes an int64 as a slice of 8 bytes.
EncUint64 encodes a uint64 as a slice of 8 bytes.
Marshal returns the encoding of v.
MarshalAll encodes all of its inputs and returns their concatenation.
NewDecoder returns a new decoder that reads from r.
NewEncoder returns a new encoder that writes to w.
ReadFile reads the contents of a file and decodes them into v.
ReadObject reads and decodes a length-prefixed and marshalled object.
ReadPrefix reads an 8-byte length prefixes, followed by the number of bytes specified in the prefix.
Unmarshal decodes the encoded value b and stores it in v, which must be a pointer.
UnmarshalAll decodes the encoded values in b and stores them in vs, which must be pointers.
WriteFile writes v to a file.
WriteObject writes a length-prefixed object to w.
WritePrefix writes a length-prefixed byte slice to w.
# Structs
A Decoder reads and decodes values from an input stream.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author
No description provided by the author
No description provided by the author