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

Tree @8767f62 (Download .tar.gz)

pool.go @8767f62raw · history · blame

package decor

import "sync"

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