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

Tree @20d7d1d (Download .tar.gz)

pool.go @20d7d1draw · history · blame

package decor

import "sync"

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