Skip to main content

|=

Overloads

NameDescription
(integer lhs |= bool rhs) -> integerPerforms a bitwise OR operation and assigns the result.
(integer lhs |= integer rhs) -> integerPerforms a bitwise OR operation and assigns the result.

(integer lhs |= bool rhs) -> integer

Performs a bitwise OR operation and assigns the result.

Parameters

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

(integer lhs |= integer rhs) -> integer

Performs a bitwise OR operation and assigns the result.

Parameters

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