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

Tree @9d0ab00 (Download .tar.gz)

pool.go @9d0ab00raw · history · blame

package decor

import "sync"

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