core.math
Exports functions for performing a variety of mathematical operations.
+
Description
Adds operands together.
Usage
<addend> <addend>
-
Description
Subtracts the subtrahend from the minuend..
Usage
<minuend> <subtrahend>
*
Description
Returns the product of the operands.
Usage
<factor> <factor>
/
Description
Divides the operands.
Usage
<dividend> <divisor>
modulo
Description
Returns the remainder from the division.
Usage
<dividend> <divisor>
pow
Description
Returns the result of raising base to the power.
Usage
<base> <power>
sqrt
Description
Returns the square root of numeral.
Usage
<numeral>
abs
Description
Returns the absolute value of numeral.
Usage
<numeral>