DynamicArray.this

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

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

Meta