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

Tree @46f322f (Download .tar.gz)

pool.go @46f322fraw · history · blame

package decor

import "sync"

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