Skip to main content

-=

Overloads

NameDescription
(integer lhs -= integer rhs) -> integerSubtracts two numbers and assigns the result.
(integer lhs -= bool rhs) -> integerSubtracts two numbers and assigns the result.
(real lhs -= integer rhs) -> realSubtracts two numbers and assigns the result.
(real lhs -= real rhs) -> realSubtracts two numbers and assigns the result.
(real lhs -= bool rhs) -> realSubtracts two numbers and assigns the result.
(complex lhs -= integer rhs) -> complexSubtracts two numbers and assigns the result.
(complex lhs -= real rhs) -> complexSubtracts two numbers and assigns the result.
(complex lhs -= bool rhs) -> complexSubtracts two numbers and assigns the result.
(complex lhs -= complex rhs) -> complexSubtracts two numbers and assigns the result.

(integer lhs -= integer rhs) -> integer

Subtracts two numbers and assigns the result.

Parameters

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

(integer lhs -= bool rhs) -> integer

Subtracts two numbers and assigns the result.

Parameters

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

(real lhs -= integer rhs) -> real

Subtracts two numbers and assigns the result.

Parameters

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

(real lhs -= real rhs) -> real

Subtracts two numbers and assigns the result.

Parameters

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

(real lhs -= bool rhs) -> real

Subtracts two numbers and assigns the result.

Parameters

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

(complex lhs -= integer rhs) -> complex

Subtracts two numbers and assigns the result.

Parameters

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

(complex lhs -= real rhs) -> complex

Subtracts two numbers and assigns the result.

Parameters

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

(complex lhs -= bool rhs) -> complex

Subtracts two numbers and assigns the result.

Parameters

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

(complex lhs -= complex rhs) -> complex

Subtracts two numbers and assigns the result.

Parameters

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