DynamicArray.this

Construct from the element(s) of the dynamic array values.

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

Meta