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

Tree @7001007 (Download .tar.gz)

pool.go @7001007raw · history · blame

package decor

import "sync"

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