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

Tree @06164b2 (Download .tar.gz)

pool.go @06164b2raw · history · blame

package decor

import "sync"

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