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

Tree @d7cfbc5 (Download .tar.gz)

pool.go @d7cfbc5raw · history · blame

package decor

import "sync"

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