Codebase list golang-github-vbauerster-mpb / 3e55caa bar_filler_nop.go
3e55caa

Tree @3e55caa (Download .tar.gz)

bar_filler_nop.go @3e55caaraw · history · blame

package mpb

import (
	"io"

	"github.com/vbauerster/mpb/v7/decor"
)

// NopStyle provides BarFillerBuilder which builds NOP BarFiller.
func NopStyle() BarFillerBuilder {
	return BarFillerBuilderFunc(func() BarFiller {
		return BarFillerFunc(func(io.Writer, int, decor.Statistics) {})
	})
}