logical_xor
Overloads
| Name | Description |
|---|---|
logical_xor(const BoolArray lhs, const BoolArray rhs) -> BoolArray | Returns the logical XOR of the BoolArray lhs and rhs. |
logical_xor(const BoolArray lhs, const bool rhs) -> BoolArray | Returns the logical XOR of the BoolArray lhs and rhs. |
logical_xor(const bool lhs, const BoolArray rhs) -> BoolArray | Returns the logical XOR of the BoolArray lhs and rhs. |
logical_xor(const BoolArray lhs, const BoolArray rhs) -> BoolArray
Returns the logical XOR of the BoolArray lhs and rhs.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
logical_xor(const BoolArray lhs, const bool rhs) -> BoolArray
Returns the logical XOR of the BoolArray lhs and rhs.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.
logical_xor(const bool lhs, const BoolArray rhs) -> BoolArray
Returns the logical XOR of the BoolArray lhs and rhs.
Parameters
- lhs: The left-hand-side array or scalar.
- rhs: The right-hand-side array or scalar.