Codebase list golang-github-vbauerster-mpb / 6fb6daf decor / pool.go
6fb6daf

Tree @6fb6daf (Download .tar.gz)

pool.go @6fb6dafraw · history · blame

package decor

import "sync"

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