wolf-graph 0.1.0

Data structures and algorithms for working with graphs with reference or value semantics.
Documentation
1
2
3
4
5
use crate::{NodeID, VisitableForest};

pub trait VisitableTree: VisitableForest {
    fn root(&self) -> NodeID;
}