Matrix.opOpAssign

Assignment operator with another samey matrix.

  1. Matrix opOpAssign(U x)
  2. Matrix opOpAssign(U operand)
    struct Matrix(T, int R, int C)
    @nogc ref pure nothrow
    opOpAssign
    (
    string op
    U
    )
    if (
    is(U : Matrix) &&
    (
    op == "*" ||
    op == "+"
    ||
    op == "-"
    )
    )
  3. Matrix opOpAssign(U operand)

Meta