Return a const reverse iterator to the character following the last character of the reversed container. The pointed-to character corresponds to the character preceding the first character of the non-reversed container. The returned iterator only acts as a sentinel. Dereferencing it results in undefined behavior. @par Complexity Constant.
| 962 | No-throw guarantee. |
| 963 | */ |
| 964 | const_reverse_iterator |
| 965 | crend() const noexcept |
| 966 | { |
| 967 | return const_reverse_iterator(begin()); |
| 968 | } |
| 969 | |
| 970 | //------------------------------------------------------ |
| 971 | // |
no outgoing calls
no test coverage detected