Codebase list golang-github-vbauerster-mpb / 4ed783c decor / pool.go
4ed783c

Tree @4ed783c (Download .tar.gz)

pool.go @4ed783craw · history · blame

package decor

import "sync"

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