Contents
Trait for things that have true and false values.
Methods
method A And (A a, A b) Source #
Returns the result of the logical AND operation between a
and b
Parameters
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
Parameters
returns | The result of the logical OR operation between |
Returns the result of the logical NOT operation on a
Parameters
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
Parameters
returns | The result of the logical exclusive-OR operation between |
method A Implies (A a, A b) Source #
Logical implication
Parameters
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.
Parameters
returns |
|