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

Tree @c776d72 (Download .tar.gz)

pool.go @c776d72raw · history · blame

package decor

import "sync"

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