Vector.opBinaryRight

Returns a new vector of greater dimension by copying elements and prepending scalar.

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

Meta