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

Tree @6393138 (Download .tar.gz)

pool.go @6393138raw · history · blame

package decor

import "sync"

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