title | parent |
---|---|
Arithmetic expressions |
microflow-expressions |
A number of arithmetic expressions are supported, all of which work on numeric types (Integer/Long, Float and Decimal).
Multiplies two numbers.
- First number Type: Integer/Long, Float or Decimal
- Second number Type: Integer/Long, Float or Decimal
If the two inputs are both of type Integer/Long, the result is of type Integer/Long.
If any of the two inputs is of type Decimal, the result is of type Decimal.
if any of the two inputs is of type Float and they're both not of type Decimal, the result is of type Float.
3 * 4
results in
12
Divides two numbers. You can use either the div
or colon ( : ) syntax, as can be seen below in the examples. The colon ( : ) syntax is inspired by the divide symbol ÷
. We cannot use the more conventional slash ( / ) syntax because that would conflict with the slash we use for separating objects and members.
- First number Type: Integer/Long, Float or Decimal
- Second number Type: Integer/Long, Float or Decimal
If any of the two inputs is of type Decimal, the result is of type Decimal. Otherwise the result is of type Float.
"div" syntax:
3 div 5
results in
0.6
":" syntax:
12 : 3
results in
4.0
Calculates the remainder of the division of one number by another. In other words, m modulo n corresponds to: m = p + k*n, where p is the result of the operation m modulo n.
- First number Type: Integer/Long, Float or Decimal
- Second number Type: Integer/Long, Float or Decimal
If the two inputs are both of type Integer/Long, the result is of type Integer/Long.
If any of the two inputs is of type Decimal, the result is of type Decimal.
if any of the two inputs is of type Float and they're both not of type Decimal, the result is of type Float.
23 mod 5
results in an Integer/Long with value
3
Alternatively,
23 mod 5.6
results in a Float with value
0.6
Adds two numbers.
{{% alert type="info" %}}
See String function calls for more information.
{{% /alert %}}
- First number Type: Integer/Long, Float or Decimal
- Second number Type: Integer/Long, Float or Decimal
If the two inputs are both of type Integer/Long, the result is of type Integer/Long.
If any of the two inputs is of type Decimal, the result is of type Decimal.
if any of the two inputs is of type Float and they're both not of type Decimal, the result is of type Float.
-3 + 4
results in an Integer/Long with value
1
4.5 + 3
results in a Float with value
7.5
Subtracts the second input from the first.
- First number Type: Integer/Long, Float or Decimal
- Second number Type: Integer/Long, Float or Decimal
If the two inputs are both of type Integer/Long, the result is of type Integer/Long.
If any of the two inputs is of type Decimal, the result is of type Decimal.
if any of the two inputs is of type Float and they're both not of type Decimal, the result is of type Float.
5 - 4
results in an Integer/Long with value
1
34.4 - 3.1
results in a Float with value
31.3