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

Tree @43fa7a1 (Download .tar.gz)

pool.go @43fa7a1raw · history · blame

package decor

import "sync"

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