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

Tree @33ac0fb (Download .tar.gz)

pool.go @33ac0fbraw · history · blame

package decor

import "sync"

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