Function fera_graph::traverse::dfs_visit

source ·
pub fn dfs_visit<'a, G, C, V>(
    g: &'a G,
    color: &mut C,
    stack: &mut DfsStack<'a, G>,
    vis: &mut V
) -> Controlwhere
    G: Incidence,
    C: VertexPropMut<G, Color>,
    V: Visitor<G>,