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

Tree @e16a947 (Download .tar.gz)

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