| 425 | } |
| 426 | |
| 427 | bool operator> (iterator_impl const & rhs) const |
| 428 | { |
| 429 | /* logical: return _iter > rhs._iter; */ |
| 430 | return *this - rhs > 0; |
| 431 | } |
| 432 | |
| 433 | bool operator<= (iterator_impl const & rhs) const |
| 434 | { |
nothing calls this directly
no outgoing calls
no test coverage detected