public member function
<array>
std::array::rbeginreverse_iterator rbegin() noexcept;const_reverse_iterator rbegin() const noexcept;
Return reverse iterator to reverse beginning
Returns a reverse iterator pointing to the last element in the array container.rbegin points to the element right before the one that would be pointed to by member end.
Notice that unlike member array::back, which returns a reference to this same element, this function returns a reverse random access iterator.
If the array object is const-qualified, the function returns a const_iterator. Otherwise, it returns an iterator.
Member types reverse_iterator and const_reverse_iterator are reverse random access iterator types (pointing to an element and to a const element, respectively). See vector member types.
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,4> myarray = {4, 26, 80, 14} ;
std::cout << "myarray contains:";
for ( auto rit=myarray.rbegin() ; rit < myarray.rend(); ++rit )
std::cout << ' ' << *rit;
std::cout << '\n';
return 0;
}
myarray contains: 14 80 26 4
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4