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

Tree @cb89f4e (Download .tar.gz)

pool.go @cb89f4eraw · history · blame

package decor

import "sync"

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