Skip to main content

TopologicalOrder

Type Alias TopologicalOrder 

Source
pub type TopologicalOrder<T> = Vec<GraphNode<T>>;
Expand description

A topologically sorted sequence of task nodes.

This type represents tasks in an order where all dependencies come before the tasks that depend on them.

Aliased Typeยง

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