Codebase list golang-github-vbauerster-mpb / a3060af internal / predicate.go
a3060af

Tree @a3060af (Download .tar.gz)

predicate.go @a3060afraw · history · blame

1
2
3
4
5
6
package internal

// Predicate helper for internal use.
func Predicate(pick bool) func() bool {
	return func() bool { return pick }
}