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

Tree @e269438 (Download .tar.gz)

pool.go @e269438raw · history · blame

package decor

import "sync"

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