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

Tree @674667e (Download .tar.gz)

pool.go @674667eraw · history · blame

package decor

import "sync"

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