It returns a const_iterator pointing to the past-the-end element in the container.
DeclarationFollowing are the ways in which std::set::cend works in various C++ versions.
C++98const_iterator cend() const noexcept;C++11
const_iterator cend() const noexcept;Return value
It returns a const_iterator pointing to the past-the-end element in the container.
ExceptionsIt never throws exceptions.
Time complexityTime complexity is contstant.
ExampleThe following example shows the usage of std::set::cend.
#include <iostream> #include <set> int main () { std::set<int> myset = {10,20,30,40,50}; std::cout << "myset contains:"; for (auto it = myset.cbegin(); it != myset.cend(); ++it) std::cout << ' ' << *it; std::cout << '\n'; return 0; }
The above program will compile and execute properly.
myset contains: 10 20 30 40 50
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