Expand description
Intrusive singly-linked list.
Structs§
- Intrusive link that allows an object to be inserted into a
SinglyLinkedList. This link allows the structure to be shared between threads. - Default
AtomicLinkOpsimplementation forLinkedList. - A cursor which provides read-only access to a
SinglyLinkedList. - A cursor which provides mutable access to a
SinglyLinkedList. - An iterator which consumes a
SinglyLinkedList. - An iterator over references to the items of a
SinglyLinkedList. - Intrusive link that allows an object to be inserted into a
SinglyLinkedList. - Default
LinkOpsimplementation forSinglyLinkedList. - An intrusive singly-linked list.
Traits§
- Link operations for
SinglyLinkedList.