You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: