Absolute value. It takes one numeric operand.
Operator |...|
is a shortcut for this function.
Division. It takes two or more numeric operands.
The way it works is: take the first operand and divide
it by the second and subsequent operands in sequence.
Operator /
is a shortcut for this function.
Factorial function. It takes one numeric operand.
The postfix operator !
is the alias for
this function.
The result to the value of x - ny
(x
and y
being
its two numeric operands), rounded according to the
report's rounding mode, where n
is
the integer quotient of x
divided by
y
, n
is rounded
toward zero. It takes two numeric operands.
An alias of remainder()
.
It takes two numeric operands.
Operator %
is a shortcut for this function.
Multiplication. It takes two or more numeric operands.
Operator *
is a shortcut for this function.
The result to the value of x - ny
(x
and y
being
its two numeric operands), rounded according to the
report's rounding mode, where n
is the
integer quotient of x
divided by
y
, n
is rounded
toward to the nearest integer. It takes two numeric operands.
Unary minus. Changes the sign of its numeric operand
from positive to negative, or vice versa.
It takes one numeric operand.
Operator unary -
is a shortcut of this function.
Unary plus. Leaves the sign of its numeric operand
as is. It takes one numeric operand.
Operator unary +
is a shortcut of this function.