Package reactor.kotlin.extra.bool

Functions

Link copied to clipboard
fun Mono<Boolean>.logicalAnd(rightHand: Mono<Boolean>): Mono<Boolean>

Extension to logically combine two Boolean with the AND operator.

Link copied to clipboard
fun Mono<Boolean>.logicalNAnd(rightHand: Mono<Boolean>): Mono<Boolean>

Extension to logically combine two Boolean with the Not-AND (NAND) operator.

Link copied to clipboard
fun Mono<Boolean>.logicalNOr(rightHand: Mono<Boolean>): Mono<Boolean>

Extension to logically combine two Boolean with the Not-OR (NOR) operator.

Link copied to clipboard
fun Mono<Boolean>.logicalOr(rightHand: Mono<Boolean>): Mono<Boolean>

Extension to logically combine two Boolean with the OR operator.

Link copied to clipboard
fun Mono<Boolean>.logicalXOr(rightHand: Mono<Boolean>): Mono<Boolean>

Extension to logically combine two Boolean with the exclusive-OR (XOR) operator.

Link copied to clipboard
operator fun Mono<Boolean>.not(): Mono<Boolean>

Extension to logically revert a Boolean. It can also be applied as a ! operator.