RxnBoolExt extension
Extension on Rx<bool?> providing methods for nullable boolean operations.
Properties
Methods
-
toggle(
) → void -
Toggles the boolean value of the Rx object between
true
andfalse
.
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
.