# Functions
AnyIntToInt64 converts a value of any of Go's integer types (signed and unsigned) into a signed int64.
BufferedBytesDelim reads a line from br and checks that the line ends with \r\n, returning the line without \r\n.
BufferedIntDelim reads the current line from br as an integer.
Expand expands the given byte slice to exactly n bytes.
GetBytes returns a non-nil pointer to a byte slice from a pool of byte slices.
ParseInt is a specialized version of strconv.ParseInt that parses a base-10 encoded signed integer from a []byte.
ParseUint is a specialized version of strconv.ParseUint that parses a base-10 encoded integer from a []byte.
PutBytes puts the given byte slice pointer into a pool that can be accessed via GetBytes.
ReadFloat reads the next n bytes from r as a 64 bit floating point number with the given precision.
ReadInt reads the next n bytes from r as a signed 64 bit integer.
ReadNAppend appends exactly n bytes from r into b.
ReadNDiscard discards exactly n bytes from r.
ReadUint reads the next n bytes from r as an unsigned 64 bit integer.