round down
FEEL built-in function · Numeric functions
round down(n, scale?)
Rounds towards zero at the given scale.
Parameters
| Parameter | Type | Description |
|---|---|---|
| n | number | the number to round |
| scale | number | decimal digits to keep (optional, default 0) |
Examples
round down(5.5)
5
Try it →
round down(-5.5)
-5
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).