Return a const reverse iterator to the first element of the reversed container. Returns the pointed-to character that corresponds to the last character of the non-reversed container. If the container is empty, @ref crend() is returned. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 916 | No-throw guarantee. |
| 917 | */ |
| 918 | const_reverse_iterator |
| 919 | crbegin() const noexcept |
| 920 | { |
| 921 | return const_reverse_iterator(impl_.end()); |
| 922 | } |
| 923 | |
| 924 | /** Return a reverse iterator to the character following the last character of the reversed container. |
| 925 |
no test coverage detected