|
|
4.1.3 bigint operations
+
- addition
-
- negation or subtraction
*
- multiplication
div
- integer division (omitting the remainder >= 0)
mod, %
- integer modulo (the remainder of the division
div)
^, **
- exponentiation (exponent must be non-negative)
<, >, <=, >=, ==, <>
- comparators
Example:
|