pub fn reverse_dfs_visit_mut<G, N, E, NI, EI, NM, EM, VS, F>(
graph: &mut G,
idx: NI,
f: F,
visited: &mut VS,
)Available on crate feature
algorithms only.Expand description
Calls a closure for each node in the graph the reverse DFS order starting at a specified index.