Vector.opBinary

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

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

Meta