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

Tree @b53cde0 (Download .tar.gz)

pool.go @b53cde0raw · history · blame

package decor

import "sync"

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