| 61 | |
| 62 | template<class Cursor> |
| 63 | forceinline bool |
| 64 | PostorderNodeVisitor<Cursor>::next(void) { |
| 65 | c.processCurrentNode(); |
| 66 | if (c.mayMoveSidewards()) { |
| 67 | c.moveSidewards(); |
| 68 | moveToLeaf(); |
| 69 | } else if (c.mayMoveUpwards()) { |
| 70 | c.moveUpwards(); |
| 71 | } else { |
| 72 | return false; |
| 73 | } |
| 74 | return true; |
| 75 | } |
| 76 | |
| 77 | template<class Cursor> |
| 78 | forceinline void |
nothing calls this directly
no test coverage detected