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

Tree @a32f62c (Download .tar.gz)

pool.go @a32f62craw · history · blame

package decor

import "sync"

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