Matrix.opMul

  1. MatrixType opMul(T v)
    struct Matrix(T, int RowSize, int ColSize)
    const
    opMul
    (
    in T v
    )
    if (
    __traits(isArithmetic, T) &&
    RowSize > 0
    &&
    ColSize > 0
    )
  2. MatrixType opMul(MatrixType mat_r)
  3. VectorType opMul(VectorType vec_r)

Meta