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

Tree @f1ce3dd (Download .tar.gz)

pool.go @f1ce3ddraw · history · blame

package decor

import "sync"

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