successorsOf

fun successorsOf(vertex: Vertex): Set<Vertex>

Answer the set of successors of the specified vertex. Fail if the vertex is not present in the graph.

Return

The successors of the vertex.

Parameters

vertex

The vertex for which to answer successors.