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

Tree @7adf25e (Download .tar.gz)

pool.go @7adf25eraw · history · blame

package decor

import "sync"

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