depthFirstPostOrderAll method
Traverses the vertices in a depth-first order, starting with vertices
.
Implementation
Iterable<V> depthFirstPostOrderAll(
Iterable<V> vertices, {
StorageStrategy<V>? vertexStrategy,
}) => DepthFirstPostOrderIterable<V>(
vertices,
successorsOf: successorsOf,
vertexStrategy: vertexStrategy ?? this.vertexStrategy,
);