Difference between revisions of "NXSL:ceil"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Round up value. == Syntax == ceil(''x''); == Parameters == :{| |- | ''x'' || Floating point value. |} == Return Value == The smallest integral value that is...") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Round up value. | Round up value. | ||
'''Since:''' 1.2.5 | |||
Revision as of 00:20, 6 January 2013
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