Difference between revisions of "NXSL:ceil"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
== Parameters == | == Parameters == | ||
:{| | :{| class="wikitable" | ||
|- | |- | ||
| ''x'' || Floating point value. | | ''x'' || Floating point value. |
Revision as of 11:18, 22 November 2017
Round up value.
Since: 1.2.5
Syntax
ceil(x);
Parameters
x Floating point value.
Return Value
The smallest integral value that is not less than x.
Examples
ceil(2.3) -> 3 ceil(3.8) -> 4 ceil(-2.3) -> -2 ceil(-3.8) -> -3