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

Tree @3b5e8b6 (Download .tar.gz)

predicate.go @3b5e8b6raw · history · blame

1
2
3
4
5
package internal

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