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

Tree @42c0d1c (Download .tar.gz)

pool.go @42c0d1craw · history · blame

package decor

import "sync"

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