Classes

The following classes are available globally.

  • DoublyLinkedList data structure

    Important

    Supports traversal from both next and prev nodes
    See more

    Declaration

    Swift

    public class DoublyLinkedList<Element> where Element : Equatable
  • Individual Node of the DoublyLinkedList

    See more

    Declaration

    Swift

    public class DoublyLinkedListItem<Element> where Element : Equatable
  • Queue data structures

    See more

    Declaration

    Swift

    public class Queue<Element> where Element : Equatable