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

Tree @3c5b9a4 (Download .tar.gz)

predicate.go @3c5b9a4raw · history · blame

1
2
3
4
5
package internal

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