Creates a new $(D_PSYMBOL DList) with the elements from a static array.
Static array size.
Values to initialize the list with.
Allocator.
auto l = DList!int([5, 8, 15]); assert(l.front == 5);
See Implementation
Creates a new $(D_PSYMBOL DList) with the elements from a static array.