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