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

Tree @529a634 (Download .tar.gz)

pool.go @529a634raw · history · blame

package decor

import "sync"

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