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

Tree @5c69820 (Download .tar.gz)

pool.go @5c69820raw · history · blame

package decor

import "sync"

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