DynamicArray.dup

struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
@safe pragma(inline) @property const @trusted
static if(__traits(isCopyable, T) && !is(T == union))
DynamicArray!(Unqual!T, Allocator, CapacityType)
dup
()
()
if (
!is(Unqual!T == bool) &&
(
is(CapacityType == ulong) ||
is(CapacityType == uint)
)
)

Return Value

Type: DynamicArray!(Unqual!T, Allocator, CapacityType)

shallow duplicate of this.

Meta