CeilOperator

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the ceiling of <Target>
Associationscom.livecode.mathfoundation
Summary

Returns the ceiling of Target.

Parameters
NameTypeDescription
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 -- tCeiling contains -5
Values
NameTypeDescription
return

The ceiling of Target

Description

The ceiling of Target is the least integer greater than or equal to Target.

Tagsmath