Skip to main content

^

Overloads

NameDescription
(bool lhs ^ integer rhs) -> integerPerforms a bitwise XOR operation.
(integer lhs ^ bool rhs) -> integerPerforms a bitwise XOR operation.
(integer lhs ^ integer rhs) -> integerPerforms a bitwise XOR operation.
(bool lhs ^ bool rhs) -> integerPerforms a bitwise XOR operation.

(bool lhs ^ integer rhs) -> integer

Performs a bitwise XOR operation.

Parameters

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

Returns

The result of the bitwise XOR operation.

(integer lhs ^ bool rhs) -> integer

Performs a bitwise XOR operation.

Parameters

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

Returns

The result of the bitwise XOR operation.

(integer lhs ^ integer rhs) -> integer

Performs a bitwise XOR operation.

Parameters

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

Returns

The result of the bitwise XOR operation.

(bool lhs ^ bool rhs) -> integer

Performs a bitwise XOR operation.

Parameters

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

Returns

The result of the bitwise XOR operation.