Module linked_list
A doubly-linked list with owned nodes.
The LinkedList allows pushing and popping elements at either end
in constant time.
NOTE: It is almost always better to use Vec or VecDeque because
array-based containers are generally faster,
more memory efficient, and make better use of CPU cache.
Structs
-
Cursor
A cursor over a
LinkedList. -
CursorMut
A cursor over a
LinkedListwith editing operations. -
ExtractIf
An iterator produced by calling
extract_ifon LinkedList. -
IntoIter
An owning iterator over the elements of a
LinkedList. -
Iter
An iterator over the elements of a
LinkedList. -
IterMut
A mutable iterator over the elements of a
LinkedList. - LinkedList A doubly-linked list with owned nodes.