@brief Get the iterator to the past-the-end element in the reverse order. (Always constant) @return The iterator to the past-the-end element in the reverse order.
| 2333 | /// @brief Get the iterator to the past-the-end element in the reverse order. (Always constant) |
| 2334 | /// @return The iterator to the past-the-end element in the reverse order. |
| 2335 | const_reverse_iterator rend() const noexcept { |
| 2336 | return const_reverse_iterator(begin()); |
| 2337 | } |
| 2338 | |
| 2339 | /// @brief Get the iterator to the first element in the reverse order. (Always constant) |
| 2340 | /// @return The iterator to the first element in the reverse order. |