Module structures::supers

source ·
Expand description

§Super

Contains a ‘SuperCollection’ trait for implementing a super collection. This also includes implementations for the following: AdjacencyList, SuperList. A super collection is a ‘list’ of ‘collections’ where ‘collections’ can be added, inserted, or removed. A super collection can only contain one kind of ‘collection’ (a super collection of ‘lists’, or a super collection of ‘linked lists’, etc.).

Structs§

  • An ‘adjacency list’ is a ‘list’ of ‘linked lists’, typically used to store a ‘list’ of ‘nodes’ in a ‘graph’ and their connections to other ‘nodes’.
  • A ‘super list’ is a ‘list’ of ‘lists’.

Traits§