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

Tree @8cf42df (Download .tar.gz)

pool.go @8cf42dfraw · history · blame

package decor

import "sync"

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