@brief Decrements the underlying iterator object by `n`. @param n The distance by which the underlying iterator is decremented. @return A reverse_iterator object with the underlying iterator decremented by `n`.
| 11285 | /// @param n The distance by which the underlying iterator is decremented. |
| 11286 | /// @return A reverse_iterator object with the underlying iterator decremented by `n`. |
| 11287 | reverse_iterator operator-(difference_type n) const noexcept { |
| 11288 | return reverse_iterator(m_current + n); |
| 11289 | } |
| 11290 | |
| 11291 | /// @brief Decrements the underlying iterator object by `n`. |
| 11292 | /// @param n The distance by which the underlying iterator is decremented. |
nothing calls this directly
no test coverage detected