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

Tree @741cad7 (Download .tar.gz)

pool.go @741cad7raw · history · blame

package decor

import "sync"

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