topological method
Traverses the vertices in a topological order, starting with vertex
.
Implementation
Iterable<V> topological(V vertex, {StorageStrategy<V>? vertexStrategy}) =>
topologicalAll([vertex], vertexStrategy: vertexStrategy);
Traverses the vertices in a topological order, starting with vertex
.
Iterable<V> topological(V vertex, {StorageStrategy<V>? vertexStrategy}) =>
topologicalAll([vertex], vertexStrategy: vertexStrategy);