nor

open infix fun nor(other: RetryPredicate): RetryPredicate

Combines this predicate with another using logical NOR.

Truth Table

A | B | A NOR B
---------------
0 | 0 | 1
0 | 1 | 0
1 | 0 | 0
1 | 1 | 0

Usage

val predicateC = predicateA nor predicateB

Return

a RetryPredicate that returns true only if both predicates return false.

Since

1.0.0

Parameters

other

The other RetryPredicate to be combined with.