| 131 | } |
| 132 | |
| 133 | bool operator>(const stack_iterator& r) const { |
| 134 | return index > r.index; |
| 135 | } |
| 136 | |
| 137 | bool operator<=(const stack_iterator& r) const { |
| 138 | return index <= r.index; |
nothing calls this directly
no outgoing calls
no test coverage detected