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

Tree @6306004 (Download .tar.gz)

pool.go @6306004raw · history · blame

package decor

import "sync"

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