Vector.opBinaryRight

Returns a new vector of greater dimension by copying elements and prepending values from other.

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

Meta