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

Tree @a10c703 (Download .tar.gz)

pool.go @a10c703raw · history · blame

package decor

import "sync"

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