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

Tree @804375f (Download .tar.gz)

pool.go @804375fraw · history · blame

package decor

import "sync"

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