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

Tree @dd2e215 (Download .tar.gz)

pool.go @dd2e215raw · history · blame

package decor

import "sync"

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