-
- All Implemented Interfaces:
public final class BooleanMonoExtensionsKt
-
-
Method Summary
Modifier and Type Method Description final static Mono<Boolean>
not(Mono<Boolean> $self)
Extension to logically revert a Boolean. final static Mono<Boolean>
logicalAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the AND operator. final static Mono<Boolean>
logicalNAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the Not-AND (NAND) operator. final static Mono<Boolean>
logicalOr(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the OR operator. final static Mono<Boolean>
logicalNOr(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the Not-OR (NOR) operator. final static Mono<Boolean>
logicalXOr(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the exclusive-OR (XOR) operator. -
-
Method Detail
-
not
final static Mono<Boolean> not(Mono<Boolean> $self)
Extension to logically revert a Boolean. It can also be applied as a ! operator.
-
logicalAnd
final static Mono<Boolean> logicalAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the AND operator.
-
logicalNAnd
final static Mono<Boolean> logicalNAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the Not-AND (NAND) operator.
-
logicalOr
final static Mono<Boolean> logicalOr(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the OR operator.
-
logicalNOr
final static Mono<Boolean> logicalNOr(Mono<Boolean> $self, Mono<Boolean> rightHand)
Extension to logically combine two Boolean with the Not-OR (NOR) operator.
-
-
-
-