Searched refs:DfsPostOrderIter (Results 1 – 1 of 1) sorted by relevance
72 pub fn post_order_iter<'a>(&'a mut self, func: &'a ir::Function) -> DfsPostOrderIter<'a> { in post_order_iter()73 DfsPostOrderIter(self.iter(func)) in post_order_iter()152 pub struct DfsPostOrderIter<'a>(DfsIter<'a>); struct154 impl Iterator for DfsPostOrderIter<'_> { implementation