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, alias Allocator = null, CapacityType = size_t)
    @safe pragma(inline) @trusted
    this
    (
    U
    )
    (
    U[] values
    )
    if (
    !is(Unqual!T == bool) &&
    (
    is(CapacityType == ulong) ||
    is(CapacityType == uint)
    )
    )
  4. this(U[n] values)
  5. this(R values)

Meta