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

Tree @db66c9d (Download .tar.gz)

pool.go @db66c9draw · history · blame

package decor

import "sync"

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