Skip to main content

**=

Overloads

NameDescription
(complex lhs **= complex rhs) -> complexExponentiates the left-hand side number by the right-hand side number and assigns the result.
(complex lhs **= bool rhs) -> complexExponentiates the left-hand side number by the right-hand side number and assigns the result.
(complex lhs **= real rhs) -> complexExponentiates the left-hand side number by the right-hand side number and assigns the result.
(complex lhs **= integer rhs) -> complexExponentiates the left-hand side number by the right-hand side number and assigns the result.
(bool lhs **= bool rhs) -> boolExponentiates the left-hand side number by the right-hand side number and assigns the result.
(real lhs **= bool rhs) -> realExponentiates the left-hand side number by the right-hand side number and assigns the result.
(real lhs **= real rhs) -> realExponentiates the left-hand side number by the right-hand side number and assigns the result.
(real lhs **= integer rhs) -> realExponentiates the left-hand side number by the right-hand side number and assigns the result.
(integer lhs **= bool rhs) -> integerExponentiates the left-hand side number by the right-hand side number and assigns the result.
(integer lhs **= integer rhs) -> integerExponentiates the left-hand side number by the right-hand side number and assigns the result.

(complex lhs **= complex rhs) -> complex

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(complex lhs **= bool rhs) -> complex

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(complex lhs **= real rhs) -> complex

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(complex lhs **= integer rhs) -> complex

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(bool lhs **= bool rhs) -> bool

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(real lhs **= bool rhs) -> real

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(real lhs **= real rhs) -> real

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(real lhs **= integer rhs) -> real

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(integer lhs **= bool rhs) -> integer

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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

(integer lhs **= integer rhs) -> integer

Exponentiates the left-hand side number by the right-hand side number and assigns the result.

Parameters

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