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

Tree @c4b4a17 (Download .tar.gz)

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