public member function
std::array::crbegin
<array>
const_iterator crbegin() const noexcept;
Return const_reverse_iterator to reverse beginning
Returns a const_reverse_iterator pointing to the last element in the array container.
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::rbegin, but it cannot be used to modify the contents it points to.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
// array::rbegin/rend
#include <iostream>
#include <array>
int main ()
{
std::array<int,6> myarray = {10, 20, 30, 40, 50, 60} ;
std::cout << "myarray contains:";
for ( auto rit=myarray.crbegin() ; rit < myarray.crend(); ++rit )
std::cout << " " << *rit; // cannot modify *rit
std::cout << std::endl;
return 0;
}
|
Output:
myarray contains: 60 50 40 30 20 10
|
Iterator validity
No changes.
See also
- array::rbegin
- Return reverse iterator to reverse beginning (public member function
)
- array::back
- Access last element (public member function
)
- array::crend
- Return const_reverse_iterator to reverse end (public member function
)
- array::cbegin
- Return const_iterator to beginning (public member function
)
- array::cend
- Return const_iterator to end (public member function
)