Versions in this module Expand all Collapse all v1 v1.3.9 May 20, 2024 Changes in this version + var Pool16k = NewPool(16 << 10) + var Pool1k = NewPool(1 << 10) + var Pool32k = NewPool(32 << 10) + var Pool4k = NewPool(4 << 10) + type Buf struct + Bytes []byte + type Pool struct + func NewPool(length int) *Pool + func (this *Pool) Get() *Buf + func (this *Pool) Length() int + func (this *Pool) Put(ptr *Buf)