nand

open infix fun nand(other: RetryPredicate): RetryPredicate

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

Usage

val predicateC = predicateA nand predicateB

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.