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

Tree @6a57012 (Download .tar.gz)

predicate.go @6a57012raw · history · blame

1
2
3
4
5
package internal

func Predicate(pick bool) func() bool {
	return func() bool { return pick }
}