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

Tree @6e1da6e (Download .tar.gz)

pool.go @6e1da6eraw · history · blame

package decor

import "sync"

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