| 135 | } |
| 136 | |
| 137 | bool operator<=(const stack_iterator& r) const { |
| 138 | return index <= r.index; |
| 139 | } |
| 140 | |
| 141 | bool operator>=(const stack_iterator& r) const { |
| 142 | return index >= r.index; |
nothing calls this directly
no outgoing calls
no test coverage detected