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

Tree @951c08e (Download .tar.gz)

pool.go @951c08eraw · history · blame

package decor

import "sync"

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