Matrix.opBinary

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

Meta