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

Tree @6957c2f (Download .tar.gz)

pool.go @6957c2fraw · history · blame

package decor

import "sync"

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