Returns all nodes in this graph adjacent to node which can be reached by traversing node's outgoing edges in the direction (if any) of the edge. This is not the same as "all nodes reachable from node by following outgoing edges" (also known as node's transi
(Object node)
| 224 | * @throws IllegalArgumentException if {@code node} is not an element of this graph |
| 225 | */ |
| 226 | Set<N> successors(Object node); |
| 227 | |
| 228 | // |
| 229 | // Element-level queries |
no outgoing calls
no test coverage detected