| 419 | } |
| 420 | |
| 421 | bool operator< (iterator_impl const & rhs) const |
| 422 | { |
| 423 | /* logical: return this->_iter < rhs._iter; */ |
| 424 | return rhs - *this > 0; |
| 425 | } |
| 426 | |
| 427 | bool operator> (iterator_impl const & rhs) const |
| 428 | { |
nothing calls this directly
no outgoing calls
no test coverage detected