xnor
Combines this predicate with another using logical XNOR.
Truth Table
A | B | A XNOR B
----------------
0 | 0 | 1
0 | 1 | 0
1 | 0 | 0
1 | 1 | 1
Content copied to clipboard
Usage
val predicateC = predicateA xnor predicateB
Content copied to clipboard
Return
a RetryPredicate that returns true
only if both predicates return the same value.
Since
1.0.0
Parameters
other
The other RetryPredicate to be combined with.