or
Combines this predicate with another using logical OR (disjunction).
Truth Table
A | B | A OR B
--------------
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 1
Content copied to clipboard
Usage
val predicateC = predicateA or predicateB
Content copied to clipboard
Return
a RetryPredicate that returns true
if either predicate returns true
.
Since
1.0.0
Parameters
other
The other RetryPredicate to be combined with.