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

Tree @a9bb9bb (Download .tar.gz)

pool.go @a9bb9bbraw · history · blame

package decor

import "sync"

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