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

Tree @71c6008 (Download .tar.gz)

predicate.go @71c6008raw · history · blame

1
2
3
4
5
package internal

func Predicate(pick bool) func() bool {
	return func() bool { return pick }
}