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

Tree @8e3d8fc (Download .tar.gz)

pool.go @8e3d8fcraw · history · blame

package decor

import "sync"

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