Codebase list golang-github-vbauerster-mpb / 1d3eaa0 decor / pool.go
1d3eaa0

Tree @1d3eaa0 (Download .tar.gz)

pool.go @1d3eaa0raw · history · blame

package decor

import "sync"

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