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

Tree @0b62ae1 (Download .tar.gz)

pool.go @0b62ae1raw · history · blame

package decor

import "sync"

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