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

Tree @e476c60 (Download .tar.gz)

pool.go @e476c60raw · history · blame

package decor

import "sync"

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