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

Tree @915e5f1 (Download .tar.gz)

pool.go @915e5f1raw · history · blame

package decor

import "sync"

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