Vector.this

Constructs a Vector with elements from an Input Range

  1. this(T scalar)
  2. this(T[N] values)
  3. this(R range)
    struct Vector(T, uint N)
    pure
    this
    (
    R
    )
    (
    auto ref R range
    )
    if (
    isInputRange!R
    )
    if (
    N > 0
    )
  4. this(Args args)

Meta