@brief Get the iterator to the past-the-end element. (Always constant) @return The iterator to the past-the-end element.
| 2321 | /// @brief Get the iterator to the past-the-end element. (Always constant) |
| 2322 | /// @return The iterator to the past-the-end element. |
| 2323 | const_iterator cend() const noexcept { |
| 2324 | return mp_str + m_len; |
| 2325 | } |
| 2326 | |
| 2327 | /// @brief Get the iterator to the first element in the reverse order. (Always constant) |
| 2328 | /// @return The iterator to the first element in the reverse order. |