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

Tree @dc33f2f (Download .tar.gz)

pool.go @dc33f2fraw · history · blame

package decor

import "sync"

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