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

Tree @206e3b9 (Download .tar.gz)

pool.go @206e3b9raw · history · blame

package decor

import "sync"

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