Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CycleError ¶
type CycleError[Key comparable] struct { Keys []Key }
CycleError is an error if the Graph had a cycle.
type Graph ¶
type Graph[Key comparable] struct { // contains filtered or unexported fields }
Graph is a directed acyclic graph structure with comparable keys.
func NewGraph ¶
func NewGraph[Key comparable]() *Graph[Key]
NewGraph returns a new Graph.
Graphs can also safely be instantiated with &Graph{}.
func (*Graph[Key]) ContainsNode ¶
ContainsNode returns true if the graph contains the given node.
func (*Graph[Key]) ForEachEdge ¶
ForEachEdge visits each edge in the Graph starting at the given key.
Returns a *CycleError if there is a cycle in the graph.
Click to show internal directories.
Click to hide internal directories.