Matrix.opBinary

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

Meta