Matrix.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. Matrix!(mt, rows, T.cols) opBinary(T inp)
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow const
    Matrix!(mt, rows, T.cols)
    opBinary
    (
    string op : "*"
    T
    )
    (
    T inp
    )
    if (
    (T.rows == cols)
    )
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )
  2. Vector!(mt, rows) opBinary(T inp)
  3. Matrix opBinary(mt inp)
  4. Matrix opBinary(Matrix inp)

Meta