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

Tree @b923e3a (Download .tar.gz)

predicate.go @b923e3araw · 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 }
}