Codebase list golang-github-vbauerster-mpb / 164717d decor / pool.go
164717d

Tree @164717d (Download .tar.gz)

pool.go @164717draw · history · blame

package decor

import "sync"

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