Removes all contents from the list.
DList!int l = DList!int([8, 5]); assert(!l.empty); l.clear(); assert(l.empty);
See Implementation
Removes all contents from the list.