Classes
The following classes are available globally.
-
See moreLinkedListNode
is a type that wraps each individual element ofLinkedList
. It maintains pointers to thenext
andprevious
elements. Note that because ofLinkedList
’s dependence on pointer semantics,LinkedListNode
is implemented (unlike most of the other data structures) as aclass
.Declaration
Swift
public class LinkedListNode <T>