Complex.opOpAssign

Overloads the compound assignment operator to operate on another complex number, returning the modified complex number.

  1. Complex opOpAssign(Complex!R rhs)
  2. Complex opOpAssign(Complex!R rhs)
  3. Complex opOpAssign(Complex!R rhs)
  4. Complex opOpAssign(R rhs)
  5. Complex opOpAssign(R rhs)
    struct Complex(T)
    ref return
    opOpAssign
    (
    string op : "-"
    R
    )
    (
    const R rhs
    )
    if (
    isNumeric!R
    )
    if (
    is(T == float) ||
    is(T == double)
    ||
    is(T == real)
    )
  6. Complex opOpAssign(R rhs)
  7. Complex opOpAssign(R rhs)