RxBoolExt extension

Extension on Rx<bool> providing methods for boolean operations.

on

Properties

isFalse bool
Returns true if the value is false.
no setter
isTrue bool
Returns true if the value is true.
no setter

Methods

toggle() → void
Toggles the boolean value of the Rx object between true and false.

Operators

operator &(bool other) bool
Performs a logical AND operation between the Rx value and other.
operator ^(bool other) bool
Performs a logical XOR operation between the Rx value and other.
operator |(bool other) bool
Performs a logical OR operation between the Rx value and other.