SwiftDataStructures Docs (35% documented)

SwiftDataStructures Reference Classes Reference

Classes

The following classes are available globally.

  • LinkedListNode is a type that wraps each individual element of LinkedList. It maintains pointers to the next and previous elements. Note that because of LinkedList’s dependence on pointer semantics, LinkedListNode is implemented (unlike most of the other data structures) as a class.

    See more

    Declaration

    Swift

    public class LinkedListNode <T>