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

Tree @b346b6e (Download .tar.gz)

pool.go @b346b6eraw · history · blame

package decor

import "sync"

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