@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.
| 2345 | /// @brief Get the iterator to the past-the-end element in the reverse order. (Always constant) |
| 2346 | /// @return The iterator to the past-the-end element in the reverse order. |
| 2347 | const_reverse_iterator crend() const noexcept { |
| 2348 | return const_reverse_iterator(begin()); |
| 2349 | } |
| 2350 | |
| 2351 | /// @brief Get the size of the referenced character sequence. |
| 2352 | /// @return The size of the referenced character sequence. |