Codebase list golang-github-vbauerster-mpb / 99298de decor / pool.go
99298de

Tree @99298de (Download .tar.gz)

pool.go @99298deraw · history · blame

package decor

import "sync"

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