Return a reverse iterator to the character following the last character of the reversed container. The pointed-to element corresponds to the element preceding the first element of the non-reversed container. The returned iterator only acts as a sentinel. Dereferencing it results in undefined behavior. @par Complexity Constant. @par Exception Safet
| 936 | @{ |
| 937 | */ |
| 938 | reverse_iterator |
| 939 | rend() noexcept |
| 940 | { |
| 941 | return reverse_iterator(begin()); |
| 942 | } |
| 943 | |
| 944 | const_reverse_iterator |
| 945 | rend() const noexcept |
no test coverage detected