Skip to main content

/=

Overloads

NameDescription
(integer lhs /= integer rhs) -> integerDivides two numbers and assigns the result.
(complex lhs /= complex rhs) -> complexDivides two numbers and assigns the result.
(complex lhs /= real rhs) -> complexDivides two numbers and assigns the result.
(complex lhs /= integer rhs) -> complexDivides two numbers and assigns the result.
(real lhs /= bool rhs) -> realDivides two numbers and assigns the result.
(real lhs /= real rhs) -> realDivides two numbers and assigns the result.
(real lhs /= integer rhs) -> realDivides two numbers and assigns the result.
(integer lhs /= bool rhs) -> integerDivides two numbers and assigns the result.
(complex lhs /= bool rhs) -> complexDivides two numbers and assigns the result.

(integer lhs /= integer rhs) -> integer

Divides two numbers and assigns the result.

Parameters

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

(complex lhs /= complex rhs) -> complex

Divides two numbers and assigns the result.

Parameters

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

(complex lhs /= real rhs) -> complex

Divides two numbers and assigns the result.

Parameters

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

(complex lhs /= integer rhs) -> complex

Divides two numbers and assigns the result.

Parameters

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

(real lhs /= bool rhs) -> real

Divides two numbers and assigns the result.

Parameters

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

(real lhs /= real rhs) -> real

Divides two numbers and assigns the result.

Parameters

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

(real lhs /= integer rhs) -> real

Divides two numbers and assigns the result.

Parameters

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

(integer lhs /= bool rhs) -> integer

Divides two numbers and assigns the result.

Parameters

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

(complex lhs /= bool rhs) -> complex

Divides two numbers and assigns the result.

Parameters

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