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

Tree @27386c1 (Download .tar.gz)

pool.go @27386c1raw · history · blame

package decor

import "sync"

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