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

Tree @399d101 (Download .tar.gz)

pool.go @399d101raw · history · blame

package decor

import "sync"

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