Excerpt | ||
---|---|---|
| ||
round(listOfValues, decimalPlace) Rounds a value to a given number of decimal places. |
Function: round()
Rounds a value to a given number of decimal places.
...
Examples
round(in.value, 2)
Where in.value contains [12.343,12.345], round() returns [12.34, 12.35]
...