Post-order traversal of a graph. Note: this returns a PostOrderTraversal, not an iterator range;
Declared in <llvm/ADT/PostOrderIterator.h>
template<class T>
auto
post_order(T const& G);
Post-order traversal object starting at the entry of G.
| Name | Description |
|---|---|
| G | Graph whose entry node starts the walk. |
PostOrderTraversal.