Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function CeilToInt64(const X: Double): Int64; | Round towards positive infinity. |
| 2 | function CeilToInt64f(const X: Single): Int64; |
Overload 1: function CeilToInt64(const X: Double): Int64;
Round towards positive infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Int64 - the smallest integer rounded real greater than or equal to X. Ceil(-2.8) = -2 Ceil(2.8) = 3 Ceil(-1.0) = -1
See Also: Math387.Floor
Overload 2: function CeilToInt64f(const X: Single): Int64;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Int64