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

Tree @a14f02a (Download .tar.gz)

pool.go @a14f02araw · history · blame

package decor

import "sync"

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