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

Tree @e8edb03 (Download .tar.gz)

pool.go @e8edb03raw · history · blame

package decor

import "sync"

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