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

Tree @8fb3fdb (Download .tar.gz)

pool.go @8fb3fdbraw · history · blame

package decor

import "sync"

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