DList.move_to_tail

move node to tail

struct DList(T, Allocator = Mallocator, bool GCRangesAllowed = true)
void
move_to_tail
@safe @nogc
(
Node!T* n
)
in { assert (_length > 0); assert (_head !is null && _tail !is null); }
out { assert (_tail == n && n.next is null); }

Meta