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

Tree @bd6b2ff (Download .tar.gz)

pool.go @bd6b2ffraw · history · blame

package decor

import "sync"

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