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

Tree @a5ef683 (Download .tar.gz)

pool.go @a5ef683raw · history · blame

package decor

import "sync"

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