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

Tree @d8400e9 (Download .tar.gz)

pool.go @d8400e9raw · history · blame

package decor

import "sync"

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