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

Tree @6065ec5 (Download .tar.gz)

pool.go @6065ec5raw · history · blame

package decor

import "sync"

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