Matrix.opBinary

Matrix * matrix multiplication.

  1. column_t opBinary(row_t x)
  2. auto opBinary(U x)
    struct Matrix(T, int R, int C)
    @nogc pure const nothrow
    opBinary
    (
    string op
    U
    )
    (
    U x
    )
    if (
    is(typeof(U._isMatrix)) &&
    (U._R == C)
    &&
    (op == "*")
    )
  3. Matrix opBinary(U other)

Meta