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

Tree @208ad3a (Download .tar.gz)

pool.go @208ad3araw · history · blame

package decor

import "sync"

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