! @brief comparison: less than or equal @pre The iterator is initialized; i.e. `m_object != nullptr`. */
| 5903 | @pre The iterator is initialized; i.e. `m_object != nullptr`. |
| 5904 | */ |
| 5905 | bool operator<=(const iter_impl& other) const |
| 5906 | { |
| 5907 | return not other.operator < (*this); |
| 5908 | } |
| 5909 | |
| 5910 | /*! |
| 5911 | @brief comparison: greater than |
nothing calls this directly
no outgoing calls
no test coverage detected