BooleanExtensions extension
- on
-
- bool?
Methods
-
and(
bool? other) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Performs a logicaland
operation between this Boolean and theother
one. Unlike the&&
operator, this function does not perform short-circuit evaluation. Boththis
andother
will 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 logicalor
operation between this Boolean and theother
one. Unlike the||
operator, -
xor(
bool other) → bool? -
Available on bool?, provided by the BooleanExtensions extension
Performs a logicalxor
operation between this Boolean and theother
one.