Assigns an input range.
Type of the initial range.
Values to initialize the list with.
$(D_KEYWORD this).
auto l1 = DList!int([5, 4, 9]); auto l2 = DList!int([9, 4]); l1 = l2[]; assert(l1 == l2);
See Implementation
Assigns an input range.