It returns a reverse iterator pointing to the last element in the container.
DeclarationFollowing are the ways in which std::set::rbegin works in various C++ versions.
C++98reverse_iterator rbegin(); const_reverse_iterator rbegin() const;C++11
reverse_iterator rbegin() noexcept; const_reverse_iterator rbegin() const noexcept;Return value
It returns a reverse iterator pointing to the last element in the container.
ExceptionsIt never throws exceptions.
Time complexityTime complexity is contstant.
ExampleThe following example shows the usage of std::set::rbegin.
#include <iostream> #include <set> int main () { int myints[] = {20,40,60,80,100}; std::set<int> myset (myints,myints+10); std::set<int>::reverse_iterator rit; std::cout << "myset contains:"; for (rit = myset.rbegin(); rit != myset.rend(); ++rit) std::cout << ' ' << *rit; std::cout << '\n'; return 0; }
The above program will compile and execute properly.
myset contains: 4203005 100 80 60 40 20 0
set.htm
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