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

Tree @77a668b (Download .tar.gz)

pool.go @77a668braw · history · blame

package decor

import "sync"

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