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

Tree @d46983a (Download .tar.gz)

pool.go @d46983araw · history · blame

package decor

import "sync"

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