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

Tree @dafa780 (Download .tar.gz)

pool.go @dafa780raw · history · blame

package decor

import "sync"

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