forked from davedelong/DDMathParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Operators
davedelong edited this page Sep 27, 2011
·
11 revisions
DDMathEvaluator
recognizes all common mathematical operators:
-
+
- addition (also as a unary plus) -
-
- subtraction (also negation) -
*
(orx
) - multiplication -
/
- division -
%
- modulus -
!
- factorial -
**
- exponentiation -
&
- bitwise and -
|
- bitwise or -
^
- bitwise xor -
~
- bitwise not -
<<
- bitwise left shift -
>>
- bitwise right shift