@brief Advances the underlying iterator object by `n`. @param n The distance by which the underlying iterator is advanced. @return A reverse_iterator object with the underlying iterator advanced by `n`.
| 11270 | /// @param n The distance by which the underlying iterator is advanced. |
| 11271 | /// @return A reverse_iterator object with the underlying iterator advanced by `n`. |
| 11272 | reverse_iterator operator+(difference_type n) const noexcept { |
| 11273 | return reverse_iterator(m_current - n); |
| 11274 | } |
| 11275 | |
| 11276 | /// @brief Advances the underlying iterator object by `n`. |
| 11277 | /// @param n The distance by which the underlying iterator is advanced. |
nothing calls this directly
no test coverage detected