Matrix.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. Matrix!(mt, rows, T.cols) opBinary(T inp)
  2. Vector!(mt, rows) opBinary(T inp)
  3. Matrix opBinary(mt inp)
  4. Matrix opBinary(Matrix inp)
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow const
    opBinary
    (
    string op
    )
    if (
    (op == "+") ||
    (op == "-")
    )
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )

Meta