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

Tree @0f72572 (Download .tar.gz)

pool.go @0f72572raw · history · blame

package decor

import "sync"

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