member func: crend
const_reverse_iterator crend() const noexcept;
Return const_reverse_iterator to reverse end
Returns a const_reverse_iterator pointing to the theoretical element preceding the first element in the vector, which is considered its reverse end.
A const_reverse_iterator is an iterator that points to const content and iterates in reverse order. This iterator can be increased and decreased (unless it is itself also const), just like the iterator returned by array::rend, but it cannot be used to modify the contents it points to.
Parameters
none
Return Value
A const_reverse_iterator to the reverse end of the sequence.
Member type const_reverse_iterator is a reverse random access iterator type that points to a const element (see array member types).
// array::crbegin/crend
#include <iostream>
#include <array>
int main ()
{
std::array<int,6> myarray = {10, 20, 30, 40, 50, 60} ;
std::cout << "myarray backwards:";
for ( auto rit=myarray.crbegin() ; rit < myarray.crend(); ++rit )
std::cout << ' ' << *rit; // cannot modify *rit
std::cout << '\n';
return 0;
}