mul
Multiplication operator
mul(a, b)
Parameters
| Name | Type | Description |
|---|---|---|
a |
field | First operand |
b |
field | Second operand |
Formula
result = a * b
Examples
// double the volume threshold
mul(volume, 2) > 1000000;
Returns
float
Notes
Internally used by compiler for * operator