# Functions
ReadElement reads the next sequence of bytes from r using little endian depending on the concrete type of element pointed to.
ReadElements reads multiple items from r.
ReadVarBytes reads a variable length byte array.
ReadVarInt reads a variable length integer from r and returns it as a uint64.
ReadVarString reads a variable length string from r and returns it as a Go string.
VarBytesSerializeSize returns the number of bytes it would take to serialize val as a byte array.
VarIntSerializeSize returns the number of bytes it would take to serialize val as a variable length integer.
VarStringSerializeSize returns the number of bytes it would take to serialize val as a string.
WriteElement writes the little endian representation of element to w.
WriteElements writes multiple items to w.
WriteVarBytes serializes a variable length byte array to w as a varInt containing the number of bytes, followed by the bytes themselves.
WriteVarInt serializes val to w using a variable number of bytes depending on its value.
WriteVarString serializes str to w as a variable length integer containing the length of the string followed by the bytes that represent the string itself.
# Variables
No description provided by the author
No description provided by the author