Expand description
Linked collection types. Primarily revolves around LinkedList
and its accompanying
Cursor
type.
Modules§
Structs§
- Cursor
- A type for bi-directional traversal and mutation of
LinkedList
s. SeeLinkedList::cursor_front
andLinkedList::cursor_back
to create one. - Linked
List - A list with links in both directions. See also:
Cursor
for bi-directional iteration and traversal.