std::unordered_set.empty is a member function in C++ Standard Template Library (STL) for the unordered set container. It is used to check whether the unordered set is empty or not. This function returns a boolean value; true if the unordered set is empty, and false otherwise.
C++ (Cpp) unordered_set::empty - 22 examples found. These are the top rated real world C++ (Cpp) examples of std::unordered_set::empty extracted from open source projects. You can rate examples to help us improve the quality of examples.