Expand description
Predicate factories
Modules
f64Predicate factoriesPathPredicate factoriesstrPredicate factories
Functions
- Creates a new
Predicatethat always returnstrue. - Creates a new predicate that will return
truewhen the givenvariableis equal to a pre-defined value. - Creates a new predicate that wraps over the given function. The returned type implements
Predicateand therefore has all combinators available to it. - Creates a new predicate that will return
truewhen the givenvariableis greater than or equal to a pre-defined value. - Creates a new predicate that will return
truewhen the givenvariableis greater than a pre-defined value. - Creates a new predicate that will return
truewhen the givenvariableis contained with the set of items provided. - Creates a new predicate that will return
truewhen the givenvariableis contained with the set of items provided. - Creates a new predicate that will return
truewhen the givenvariableis less than or equal to a pre-defined value. - Creates a new predicate that will return
truewhen the givenvariableis less than a pre-defined value. - Creates a new predicate that will return
truewhen the givenvariableis not equal to a pre-defined value. - Creates a new
Predicatethat always returnsfalse.