xnor

open infix fun xnor(other: RetryPredicate): RetryPredicate

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

Usage

val predicateC = predicateA xnor predicateB

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.