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

Tree @d20d40e (Download .tar.gz)

pool.go @d20d40eraw · history · blame

package decor

import "sync"

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