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
I'm trying to make an app that requires the ^ symbol to be defined as the exponent symbol so that 3 ^ 2 is 9, but the default operator ^ is defined as XOR.
The docs have content about creating custom operators and even operator aliases, but it doesn't say anything about being able to override the default operators completely. Is there a way to define ^ as exponent instead of **?
The text was updated successfully, but these errors were encountered:
First of all, thanks for the amazing library!
I'm trying to make an app that requires the
^
symbol to be defined as the exponent symbol so that3 ^ 2
is9
, but the default operator^
is defined as XOR.The docs have content about creating custom operators and even operator aliases, but it doesn't say anything about being able to override the default operators completely. Is there a way to define
^
as exponent instead of**
?The text was updated successfully, but these errors were encountered: