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

Tree @f8c9d69 (Download .tar.gz)

pool.go @f8c9d69raw · history · blame

package decor

import "sync"

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