| 424 | return tmp; |
| 425 | } |
| 426 | ordered_iterator operator-(difference_type n) { |
| 427 | ordered_iterator tmp(*this); |
| 428 | tmp -= n; |
| 429 | return tmp; |
| 430 | } |
| 431 | |
| 432 | friend bool operator==(const ordered_iterator& lhs, |
| 433 | const ordered_iterator& rhs) { |
nothing calls this directly
no outgoing calls
no test coverage detected