! @brief comparison: greater than @pre The iterator is initialized; i.e. `m_object != nullptr`. */
| 11235 | @pre The iterator is initialized; i.e. `m_object != nullptr`. |
| 11236 | */ |
| 11237 | bool operator>(const iter_impl& other) const |
| 11238 | { |
| 11239 | return !operator<=(other); |
| 11240 | } |
| 11241 | |
| 11242 | /*! |
| 11243 | @brief comparison: greater than or equal |
nothing calls this directly
no outgoing calls
no test coverage detected