Matrix.opOpAssign

Undocumented in source. Be warned that the author may not have intended to support it.
  1. Matrix opOpAssign(Matrix!(T2, N, M) m)
  2. Matrix opOpAssign(Matrix!(T2, N2, 1) m)
  3. Matrix opOpAssign(T2 v)
  4. Matrix opOpAssign(Matrix!(T2, N, N) m)
    struct Matrix(T, size_t N, size_t M = N)
    pure nothrow ref
    static if(N == M)
    opOpAssign
    (
    string op
    T2
    )
    (
    in Matrix!(T2, N, N) m
    )
    if (
    op == "*"
    )

Meta