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

Tree @9f7145a (Download .tar.gz)

pool.go @9f7145araw · history · blame

package decor

import "sync"

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