not

open operator fun not(): RetryPredicate

Negates the retry condition, inverting the result of shouldRetry.

Truth Table

A | NOT A
---------
0 | 1
1 | 0

Usage

val predicateNotA = !predicateA

Return

a RetryPredicate that negates the result of the original predicate.

Since

1.0.0