| 402 | return tmp; |
| 403 | } |
| 404 | ordered_iterator operator--(int) { |
| 405 | ordered_iterator tmp(*this); |
| 406 | --(*this); |
| 407 | return tmp; |
| 408 | } |
| 409 | |
| 410 | reference operator[](difference_type n) const { return m_iterator[n]; } |
| 411 |
nothing calls this directly
no outgoing calls
no test coverage detected