forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathceiling.lcdoc
More file actions
47 lines (29 loc) · 951 Bytes
/
ceiling.lcdoc
File metadata and controls
47 lines (29 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Name: ceiling
Synonyms: ceil
Type: function
Syntax: the ceiling of <number>
Syntax: ceiling(<number>)
Summary:
<return|Returns> the smallest integer greater than or equal to number.
Introduced: 7.1
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
ceiling(33.567) -- result is 34
Example:
ceiling(-6.3) -- result is -6
Parameters:
number:
Any number, or expression that evaluates to a number.
Returns:
The <ceiling> <function> <return|returns> an <integer>.
Description:
Use the <ceiling> <function> to return the greatest integer less than or
equal to a number.
The <ceiling> function does not always <return> the
<integer> closest to the <number>. For example, `ceiling(5.1)`
<return(glossary)|returns> 6, but `ceiling(4.99)`
<return(glossary)|returns> 5.
References: function (control structure), trunc (function), abs (function),
floor (function), return (glossary), integer (keyword)
Tags: math