Trait for things that have true and false values.
method A And (A a, A b) Source #
Returns the result of the logical AND operation between a
and b
returns | The result of the logical AND operation between |
method A Or (A a, A b) Source #
Returns the result of the logical OR operation between a
and b
returns | The result of the logical OR operation between |
Returns the result of the logical NOT operation on a
returns | The result of the logical NOT operation on |
method A XOr (A a, A b) Source #
Returns the result of the logical exclusive-OR operation between a
and b
returns | The result of the logical exclusive-OR operation between |
method A Implies (A a, A b) Source #
Logical implication
returns | If |
method A BiCondition (A a, A b) Source #
Logical bi-conditional. Both a
and b
must be true
, or both a
and b
must
be false.
returns |
|