MCPcopy Create free account
hub / github.com/douchuan/algorithm / post

Method post

src/graph/directed/order.rs:27–29  ·  view source on GitHub ↗

Returns the vertices in postorder

(&self)

Source from the content-addressed store, hash-verified

25
26 /// Returns the vertices in postorder
27 pub fn post(&self) -> Iter<'_, usize> {
28 self.post_order.iter()
29 }
30
31 /// Returns the vertices in reverse postorder.
32 pub fn rev_post(&self) -> Rev<Iter<'_, usize>> {

Callers 1

checkMethod · 0.80

Calls 1

iterMethod · 0.45

Tested by

no test coverage detected