Vector.opBinary

Multiply with right-hand-side rhs.

  1. auto opBinary(T rhs)
  2. Vector opBinary(F r)
  3. Vector!(CommonType!(E, F), D) opBinary(Vector!(F, D) r)
  4. Vector!(E, T.rows) opBinary(T rhs)
    struct Vector(E, uint D, bool normalizedFlag = false, Orient orient = Orient.column)
    const
    Vector!(E, T.rows)
    opBinary
    (
    string op : "*"
    T
    )
    (
    in T rhs
    )
    if (
    (T.cols == dimension)
    )
    if (
    D >= 1 &&
    (
    !normalizedFlag ||
    isFloatingPoint!E
    )
    )

Meta