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

Tree @ff34943 (Download .tar.gz)

pool.go @ff34943raw · history · blame

package decor

import "sync"

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