Skip to main content

*=

Overloads

NameDescription
(integer lhs *= bool rhs) -> integerMultiplies two numbers and assigns the result.
(complex lhs *= complex rhs) -> complexMultiplies two numbers and assigns the result.
(complex lhs *= bool rhs) -> complexMultiplies two numbers and assigns the result.
(complex lhs *= real rhs) -> complexMultiplies two numbers and assigns the result.
(complex lhs *= integer rhs) -> complexMultiplies two numbers and assigns the result.
(real lhs *= bool rhs) -> realMultiplies two numbers and assigns the result.
(real lhs *= real rhs) -> realMultiplies two numbers and assigns the result.
(real lhs *= integer rhs) -> realMultiplies two numbers and assigns the result.
(integer lhs *= integer rhs) -> integerMultiplies two numbers and assigns the result.

(integer lhs *= bool rhs) -> integer

Multiplies two numbers and assigns the result.

Parameters

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

(complex lhs *= complex rhs) -> complex

Multiplies two numbers and assigns the result.

Parameters

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

(complex lhs *= bool rhs) -> complex

Multiplies two numbers and assigns the result.

Parameters

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

(complex lhs *= real rhs) -> complex

Multiplies two numbers and assigns the result.

Parameters

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

(complex lhs *= integer rhs) -> complex

Multiplies two numbers and assigns the result.

Parameters

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

(real lhs *= bool rhs) -> real

Multiplies two numbers and assigns the result.

Parameters

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

(real lhs *= real rhs) -> real

Multiplies two numbers and assigns the result.

Parameters

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

(real lhs *= integer rhs) -> real

Multiplies two numbers and assigns the result.

Parameters

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

(integer lhs *= integer rhs) -> integer

Multiplies two numbers and assigns the result.

Parameters

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