Vector.this

Constructs a Vector with all elements initialized separetely

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

Meta