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

Tree @2e7a612 (Download .tar.gz)

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