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

Tree @4e672ba (Download .tar.gz)

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