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

Tree @acc8708 (Download .tar.gz)

pool.go @acc8708raw · history · blame

package decor

import "sync"

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