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

Tree @cb2bc67 (Download .tar.gz)

pool.go @cb2bc67raw · history · blame

package decor

import "sync"

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