! @brief comparison: less than or equal @pre The iterator is initialized; i.e. `m_object != nullptr`. */
| 13333 | @pre The iterator is initialized; i.e. `m_object != nullptr`. |
| 13334 | */ |
| 13335 | bool operator<=(const iter_impl& other) const |
| 13336 | { |
| 13337 | return !other.operator < (*this); |
| 13338 | } |
| 13339 | |
| 13340 | /*! |
| 13341 | @brief comparison: greater than |
nothing calls this directly
no test coverage detected