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

Tree @59024a8 (Download .tar.gz)

pool.go @59024a8raw · history · blame

package decor

import "sync"

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