CeilOperator |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | the ceiling of <Target>
|
Associations | com.livecode.mathfoundation |
Summary | Returns the ceiling of Target.
|
Parameters | Name | Type | Description |
---|
Target | | An expression that evaluates to a number.
|
|
Example | variable tNum as Number
variable tCeiling as Number
put -5.5 into tNum
put the ceiling of tNum into tCeiling
|
Values | Name | Type | Description |
---|
return | | The ceiling of Target
|
|
Description | The ceiling of Target is the least integer greater than or equal to Target.
|
Tags | math |