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 | 0Content copied to clipboard
Usage
val predicateC = predicateA nand predicateBContent 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.