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

Tree @7db018c (Download .tar.gz)

pool.go @7db018craw · history · blame

package decor

import "sync"

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