>=
Overloads
| Name | Description |
|---|---|
(integer lhs >= integer rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(integer lhs >= bool rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(bool lhs >= bool rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(bool lhs >= real rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(bool lhs >= integer rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(real lhs >= bool rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(real lhs >= real rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(real lhs >= integer rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(integer lhs >= real rhs) -> bool | Checks if the left-hand side number is greater than or equal to the right-hand side number. |
(integer lhs >= integer rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(integer lhs >= bool rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(bool lhs >= bool rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(bool lhs >= real rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(bool lhs >= integer rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(real lhs >= bool rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(real lhs >= real rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(real lhs >= integer rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.
(integer lhs >= real rhs) -> bool
Checks if the left-hand side number is greater than or equal to 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 or equal to rhs, false otherwise.