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)
  2. Vector!(mt, rows) opBinary(T inp)
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow const
    opBinary
    (
    string op : "*"
    T : Vector!(mt, cols)
    )
    (
    T inp
    )
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )
  3. Matrix opBinary(mt inp)
  4. Matrix opBinary(Matrix inp)

Meta