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

Tree @2be5ed5 (Download .tar.gz)

pool.go @2be5ed5raw · history · blame

package decor

import "sync"

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