Returns the set of edges that connect node1 to node2. This set is the intersection of outEdges(node1) and inEdges(node2). If node1 is equal to node2, then it is the set of self-loop edges for that node. @throws IllegalArgumentException if {@code n
(Object node1, Object node2)
| 283 | * of this graph |
| 284 | */ |
| 285 | Set<E> edgesConnecting(Object node1, Object node2); |
| 286 | |
| 287 | /** |
| 288 | * Returns all edges in this graph which can be traversed in the direction (if any) of the edge |
no outgoing calls
no test coverage detected