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

Tree @b140862 (Download .tar.gz)

pool.go @b140862raw · history · blame

package decor

import "sync"

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