nand
Combines this predicate with another using logical NAND.
Truth Table
A | B | A NAND B
----------------
0 | 0 | 1
0 | 1 | 1
1 | 0 | 1
1 | 1 | 0
Content copied to clipboard
Usage
val predicateC = predicateA nand predicateB
Content copied to clipboard
Return
a RetryPredicate that returns true
only if at least one predicate returns false
.
Since
1.0.0
Parameters
other
The other RetryPredicate to be combined with.