class |
Abs |
abs - returns the absolute value of a numeric argument.
|
class |
Add |
+ - performs addition.
|
class |
BitwiseAnd |
/\ - performs bitwise addition.
|
class |
BitwiseOr |
\/ - bitwise 'or'.
|
class |
BitwiseXor |
xor - bitwise 'exclusive or'.
|
class |
Divide |
/ - performs division.
|
class |
IntegerDivide |
// - performs integer division.
|
class |
Max |
max - finds the maximum of two numbers.
|
class |
Min |
min - finds the minimum of two numbers.
|
class |
Minus |
- - minus operator.
|
class |
Modulo |
mod - finds the remainder of division of one number by another.
|
class |
Multiply |
* - performs multiplication.
|
class |
Power |
** - calculates the result of the first argument raised to the power of the second argument.
|
class |
Random |
random(X) Evaluate to a random integer i for which 0 =< i < X.
|
class |
Remainder |
rem - finds the remainder of division of one number by another.
|
class |
Round |
integer(X) - round X to the nearest integer value.
|
class |
ShiftLeft |
<< - left shift bits.
|
class |
ShiftRight |
>> - right shift bits.
|
class |
Subtract |
- - performs subtraction.
|