BooleanExtensions extension
- on
-
- bool?
Methods
-
and(
bool? other) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Performs a logicalandoperation between this Boolean and theotherone. Unlike the&&operator, this function does not perform short-circuit evaluation. Boththisandotherwill always be evaluated. -
not(
) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Returns the inverse of this boolean. -
or(
bool other) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Performs a logicaloroperation between this Boolean and theotherone. Unlike the||operator, -
xor(
bool other) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Performs a logicalxoroperation between this Boolean and theotherone.