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

Tree @208a51c (Download .tar.gz)

predicate.go @208a51craw · 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 }
}