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

Tree @d4d9499 (Download .tar.gz)

pool.go @d4d9499raw · history · blame

package decor

import "sync"

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