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

Tree @c904729 (Download .tar.gz)

pool.go @c904729raw · history · blame

package decor

import "sync"

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