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

Tree @8b54082 (Download .tar.gz)

pool.go @8b54082raw · history · blame

package decor

import "sync"

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