Codebase list golang-github-vbauerster-mpb / 706050e decor / pool.go
706050e

Tree @706050e (Download .tar.gz)

pool.go @706050eraw · history · blame

package decor

import "sync"

var bytesPool = sync.Pool{
	New: func() interface{} {
		b := make([]byte, 0, 32)
		return &b
	},
}