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

Tree @abc3adb (Download .tar.gz)

pool.go @abc3adbraw · history · blame

package decor

import "sync"

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