>
Overloads
| Name | Description |
|---|---|
(bool lhs > real rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(bool lhs > bool rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(integer lhs > bool rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(bool lhs > integer rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(real lhs > bool rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(real lhs > real rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(real lhs > integer rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(integer lhs > integer rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(integer lhs > real rhs) -> bool | Checks if the left-hand side number is greater than the right-hand side number. |
(bool lhs > real rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(bool lhs > bool rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(integer lhs > bool rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(bool lhs > integer rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(real lhs > bool rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(real lhs > real rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(real lhs > integer rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(integer lhs > integer rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.
(integer lhs > real rhs) -> bool
Checks if the left-hand side number is greater than the right-hand side number.
Parameters
- lhs: The left-hand side number.
- rhs: The right-hand side number.
Returns
True if lhs is greater than rhs, false otherwise.