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

Tree @5c3a5ab (Download .tar.gz)

pool.go @5c3a5abraw · history · blame

package decor

import "sync"

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