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

Tree @3cc9cff (Download .tar.gz)

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