DynamicArray.this

Construct from the n number of element(s) in the static array values.

  1. this(U value)
  2. this(U[] values)
  3. this(U[n] values)
    struct DynamicArray(T, Allocator = GCAllocator, Capacity = size_t)
    @trusted
    this
    (
    uint n
    U
    )
    (
    U[n] values
    )
    if (
    values.length <= Capacity.max &&
    )
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )
  4. this(R values)
  5. enum _growthP;
  6. enum _growthQ;

Meta