Type Alias DepGraph

Source
pub type DepGraph<T> = HashMap<T, HashSet<T>>;
Expand description

DepGraph is a dependency graph. It is represented as a HashMap where the key is the node and the value is a HashSet of its dependencies.

Aliased Typeยง

pub struct DepGraph<T> { /* private fields */ }