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

Tree @7e6c4e4 (Download .tar.gz)

pool.go @7e6c4e4raw · history · blame

package decor

import "sync"

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