Expand description
Module providing abstractions for a linked list implementation.
Structs§
- Iter
- Iterator implementation to iterate over the items in a
LinkedList. - Link
- Represents a link to node in the linked list.
- Linked
List - A double-linked linked list implementation using a generational
Arenafor allocation. - Node
- Represents a node in a linked list.
Enums§
- List
Error - Error type associated with list operations.
Type Aliases§
- Linked
List Arena Entry - Type alias for arena entries corresponding to
LinkedListNodeinstances.