| 152 | } |
| 153 | |
| 154 | static inline PostOrderTreeDFIterator end(NodePtr sentinel_node) { |
| 155 | return PostOrderTreeDFIterator(sentinel_node, false); |
| 156 | } |
| 157 | |
| 158 | bool operator==(const PostOrderTreeDFIterator& x) const { |
| 159 | return current_ == x.current_; |
no test coverage detected