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