SwiftDataStructures Docs (35% documented)

SwiftDataStructures Reference Structs Reference

Structs

The following structs are available globally.

  • A set of unique elements as determined by hashValue and ==.

    See more

    Declaration

    Swift

    public struct Set <T: Hashable>
  • LinkedList is intended to be used in the implementation of other collection types. To this end, it intentionally exposes some of its own implementation details (particularly, the existence LinkedListNode<T>) so that developers can make use of these details to optimize the types they build on top of it.

    See more

    Declaration

    Swift

    public struct LinkedList <T> //: ListType