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

Tree @c2b1cca (Download .tar.gz)

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