Matrix.opBinary

  1. Matrix opBinary(T factor)
  2. ColumnType opBinary(RowType x)
    struct Matrix(T, ubyte R, ubyte C = R, MatrixOrder O = CurrentMatrixOrder)
    pure nothrow const @safe @nogc
    static if(O == MatrixOrder.RowMajor)
    opBinary
    (
    string op
    )
    if (
    op == "*"
    )
    if (
    R >= 2 &&
    R <= 4
    &&
    C >= 2
    &&
    C <= 4
    )
  3. auto opBinary(U x)
  4. Matrix opBinary(U rhs)

Meta