Skip to main content

>

Overloads

NameDescription
(bool lhs > real rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(bool lhs > bool rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(integer lhs > bool rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(bool lhs > integer rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(real lhs > bool rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(real lhs > real rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(real lhs > integer rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(integer lhs > integer rhs) -> boolChecks if the left-hand side number is greater than the right-hand side number.
(integer lhs > real rhs) -> boolChecks 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.