Vector.opBinaryRight

Returns a new vector with binary operator applied to all elements and scalar

  1. Vector opBinaryRight(T scalar)
    struct Vector(T, uint N)
    pure const
    opBinaryRight
    (
    string op
    )
    (
    const T scalar
    )
    if (
    !op.among("~", "<<", ">>", ">>>")
    )
    if (
    N > 0
    )
  2. Vector!(T, N + 1) opBinaryRight(T scalar)
  3. Vector!(T, N + M) opBinaryRight(T[M] other)
  4. Vector opBinary(T scalar)

Meta