Codebase list golang-github-vbauerster-mpb / 50dd43f decor / pool.go
50dd43f

Tree @50dd43f (Download .tar.gz)

pool.go @50dd43fraw · history · blame

package decor

import "sync"

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