
- The C Standard Library
- The C Standard Library
- The C++ Standard Library
- C++ Library - Home
- C++ Library - <fstream>
- C++ Library - <iomanip>
- C++ Library - <ios>
- C++ Library - <iosfwd>
- C++ Library - <iostream>
- C++ Library - <istream>
- C++ Library - <ostream>
- C++ Library - <sstream>
- C++ Library - <streambuf>
- C++ Library - <atomic>
- C++ Library - <complex>
- C++ Library - <exception>
- C++ Library - <functional>
- C++ Library - <limits>
- C++ Library - <locale>
- C++ Library - <memory>
- C++ Library - <new>
- C++ Library - <numeric>
- C++ Library - <regex>
- C++ Library - <stdexcept>
- C++ Library - <string>
- C++ Library - <thread>
- C++ Library - <tuple>
- C++ Library - <typeinfo>
- C++ Library - <utility>
- C++ Library - <valarray>
- The C++ STL Library
- C++ Library - <array>
- C++ Library - <bitset>
- C++ Library - <deque>
- C++ Library - <forward_list>
- C++ Library - <list>
- C++ Library - <map>
- C++ Library - <queue>
- C++ Library - <set>
- C++ Library - <stack>
- C++ Library - <unordered_map>
- C++ Library - <unordered_set>
- C++ Library - <vector>
- C++ Library - <algorithm>
- C++ Library - <iterator>
- C++ Programming Resources
- C++ Programming Tutorial
- C++ Useful Resources
- C++ Discussion
C++ Set Library - empty Function
Description
It returns whether the set container is empty.
Declaration
Following are the ways in which std::set::empty works in various C++ versions.
C++98
bool empty() const;
C++11
bool empty() const noexcept;
Return value
It returns whether the set container is empty.
Exceptions
It never throws exceptions.
Time complexity
Time complexity is contstant.
Example
The 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
Advertisements