It returns whether the set container is empty.
DeclarationFollowing are the ways in which std::set::empty works in various C++ versions.
C++98bool empty() const;C++11
bool empty() const noexcept;Return value
It returns whether the set container is empty.
ExceptionsIt never throws exceptions.
Time complexityTime complexity is contstant.
ExampleThe following example shows the usage of std::set::empty.
#include <iostream> #include <set> int main () { std::set<int> myset; myset.insert(0); myset.insert(10); myset.insert(20); std::cout << "myset contains:"; while (!myset.empty()) { std::cout << ' ' << *myset.begin(); myset.erase(myset.begin()); } std::cout << '\n'; return 0; }
The above program will compile and execute properly.
myset contains: 0 10 20
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