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

Tree @d7d5bd1 (Download .tar.gz)

pool.go @d7d5bd1raw · history · blame

package decor

import "sync"

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