Matrix.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. _VectorType opBinary(_VectorType rhs)
  2. Matrix opBinary(scalar rhs)
  3. Matrix!(T, Rows, OtherColumns) opBinary(Matrix!(T, OtherRows, OtherColumns) rhs)
  4. Matrix opBinary(Matrix rhs)
    struct Matrix(T, uint Rows, uint Columns)
    opBinary
    (
    string op
    )
    if (
    (
    op == "+" ||
    op == "-"
    )
    &&
    Columns == rhs._Columns
    &&
    Rows == rhs._Rows
    )
    if (
    Rows > 0 &&
    Columns > 0
    )

Meta