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

Tree @d54fb86 (Download .tar.gz)

pool.go @d54fb86raw · history · blame

package decor

import "sync"

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