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
LinkedLists. SeeLinkedList::cursor_frontandLinkedList::cursor_backto create one. - Linked
List - A list with links in both directions. See also:
Cursorfor bi-directional iteration and traversal.