Codebase list golang-github-vbauerster-mpb / 249b82a decor / pool.go
249b82a

Tree @249b82a (Download .tar.gz)

pool.go @249b82araw · history · blame

package decor

import "sync"

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