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

Tree @52a4eb3 (Download .tar.gz)

pool.go @52a4eb3raw · history · blame

package decor

import "sync"

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