Codebase list golang-github-vbauerster-mpb / 678f57b decor / pool.go
678f57b

Tree @678f57b (Download .tar.gz)

pool.go @678f57braw · history · blame

package decor

import "sync"

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