DynamicArray.this

Construct from uncopyable element value.

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

Meta