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

Tree @9083360 (Download .tar.gz)

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