edgesFromTo

fun edgesFromTo(source: V, destination: V): Set<E>

Answer an unmodifiable set of edges (if any) between the specified vertices. Note that subsequent changes to the graph may affect this set.

Return

The edges that connect the source and destination vertices.

Parameters

source

The source vertex.

destination

The destination vertex.