Matrix.opAssign

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

Meta