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

Tree @90674bb (Download .tar.gz)

pool.go @90674bbraw · history · blame

package decor

import "sync"

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