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

Tree @4b3874f (Download .tar.gz)

pool.go @4b3874fraw · history · blame

package decor

import "sync"

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