Skip to main content

<=

Overloads

NameDescription
(integer lhs <= integer rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(integer lhs <= real rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(integer lhs <= bool rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(real lhs <= real rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(real lhs <= integer rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(bool lhs <= bool rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(bool lhs <= real rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(bool lhs <= integer rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.
(real lhs <= bool rhs) -> boolChecks if the left-hand side number is less than or equal to the right-hand side number.

(integer lhs <= integer rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(integer lhs <= real rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(integer lhs <= bool rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(real lhs <= real rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(real lhs <= integer rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(bool lhs <= bool rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(bool lhs <= real rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(bool lhs <= integer rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.

(real lhs <= bool rhs) -> bool

Checks if the left-hand side number is less 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 less than or equal to rhs, false otherwise.