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

Tree @105f319 (Download .tar.gz)

pool.go @105f319raw · history · blame

package decor

import "sync"

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