Module deepmesa_lists::linkedlist[][src]

Expand description

A doubly linked list that owns the nodes and can pre-allocate memory for performance. This linked list allows pushing and popping elements at either end in constant time with the same API as std::collections::LinkedList.

In contrast to std::collections::LinkedList, however this list also allows pushing and popping elements from the middle of the list in constant time.

Modules