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

Tree @ef5e8c5 (Download .tar.gz)

pool.go @ef5e8c5raw · history · blame

package decor

import "sync"

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