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