Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Floor(const X: TCplx): TCplx; | Round towards negative infinity. |
| 2 | function Floor(const X: TSCplx): TSCplx; | |
| 3 | function Floor(const X: Double): Double; | Round towards negative infinity. |
| 4 | function Floorf(const X: Single): Single; |
Overload 1: function Floor(const X: TCplx): TCplx;
Round towards negative infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex)
Remarks:
Real and imaginary part are handled independently.
Overload 2: function Floor(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx
Overload 3: function Floor(const X: Double): Double;
Round towards negative infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Double - 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 4: function Floorf(const X: Single): Single;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Single