Most of the boolean logical operators are implemented, such as:
- Logical And (
&& )
- Logical OR (
|| )
- Logical Negation (
! )
But the boolean logical operator for exclusive OR has not been implemented. It's still unclear if it is required anyways since the functionality can be easily reproduced by rearranging existing logical building blocks.
It may be smarter to reserve the ^ operator for exponential calculations, since that is the most natural use of the carrot. That being said, Exclusive OR might be a "neat" improvement.
Most of the boolean logical operators are implemented, such as:
&&)||)!)But the boolean logical operator for exclusive OR has not been implemented. It's still unclear if it is required anyways since the functionality can be easily reproduced by rearranging existing logical building blocks.
It may be smarter to reserve the
^operator for exponential calculations, since that is the most natural use of the carrot. That being said, Exclusive OR might be a "neat" improvement.