Skip to main content

%=

Overloads

NameDescription
(integer lhs %= integer rhs) -> integerCalculates the remainder of division and assigns the result.
(integer lhs %= bool rhs) -> integerCalculates the remainder of division and assigns the result.

(integer lhs %= integer rhs) -> integer

Calculates the remainder of division and assigns the result.

Parameters

  • lhs: The left-hand side number.
  • rhs: The right-hand side number.

(integer lhs %= bool rhs) -> integer

Calculates the remainder of division and assigns the result.

Parameters

  • lhs: The left-hand side number.
  • rhs: The right-hand side number.