Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function RoundToInt(const X: Double): Integer; | Rounds double precision floating point number towards nearest integer (banker) and converts to 32bit integer. |
| 2 | function RoundToIntf(const X: Single): Integer; | Rounds single precision floating point number towards nearest integer (banker) and converts to 32bit integer. |
Overload 1: function RoundToInt(const X: Double): Integer;
Rounds double precision floating point number towards nearest integer (banker) and converts to 32bit integer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Int32
Overload 2: function RoundToIntf(const X: Single): Integer;
Rounds single precision floating point number towards nearest integer (banker) and converts to 32bit integer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Int32