DynamicArray.this

Construct from copyable element value.

  1. this(T value)
  2. this(U value)
    struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
    @safe pragma(inline) @trusted
    this
    (
    U
    )
    ()
    if (
    __traits(isCopyable, U) &&
    )
    if (
    !is(Unqual!T == bool) &&
    (
    is(CapacityType == ulong) ||
    is(CapacityType == uint)
    )
    )
  3. this(U[] values)
  4. this(U[n] values)
  5. this(R values)

Meta