BooleanExpressionOperators extension
Defines operations on boolean values.
- on
Methods
-
not(
) → Expression< bool?> -
Available on Expression<
Negates this boolean expression. The returned expression is true ifbool?> , provided by the BooleanExpressionOperators extensionthisis false, and vice versa.
Operators
-
operator &(
Expression< bool?> other) → Expression<bool?> -
Available on Expression<
Returns an expression that is true iff bothbool?> , provided by the BooleanExpressionOperators extensionthisandotherare true. -
operator |(
Expression< bool?> other) → Expression<bool?> -
Available on Expression<
Returns an expression that is true ifbool?> , provided by the BooleanExpressionOperators extensionthisorotherare true.