Values represent the encoded buffer for the values.
type Values struct { Buffer []byte WriteIndex int ReadIndex int }
func (vb *Values) Bytes() []byte
Bytes returns a reference to already written bytes in the Buffer.
func (vb *Values) ReadValue() []byte
ReadValue is the helper method to decode Values to a map[Key][]byte.
func (vb *Values) WriteValue(v []byte)
WriteValue is the helper method to encode Values from map[Key][]byte.