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

Tree @579e874 (Download .tar.gz)

pool.go @579e874raw · history · blame

package decor

import "sync"

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