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

Tree @518e224 (Download .tar.gz)

pool.go @518e224raw · history · blame

package decor

import "sync"

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