Versions in this module Expand all Collapse all v1 v1.4.0 Nov 21, 2020 v1.3.1 Nov 29, 2019 Changes in this version + type Buffer struct + func (b *Buffer) AppendBool(v bool) + func (b *Buffer) AppendFloat(f float64, fmt byte, prec, bitSize int) + func (b *Buffer) AppendInt(i int64) + func (b *Buffer) AppendTime(t time.Time, layout string) + func (b *Buffer) AppendUint(i uint64) + func (b *Buffer) Bytes() []byte + func (b *Buffer) Cap() int + func (b *Buffer) Len() int + func (b *Buffer) Reset() + func (b *Buffer) String() string + func (b *Buffer) Write(bs []byte) (int, error) + func (b *Buffer) WriteByte(v byte) error + func (b *Buffer) WriteString(s string) + type Pool struct + func NewPool(size int) Pool + func (p Pool) Get() *Buffer + func (p Pool) Put(buf *Buffer)