The
unordered_multiset::empty() is a built-in function in C++ STL which returns a boolean value. It returns true if the unordered_multiset container is empty. Otherwise, it returns false.
Syntax:
unordered_multiset_name.empty()
Parameters: The function does not accepts any parameter.
Return Value: It returns a boolean value which denotes whether a unordered_multiset is empty or not.
Below programs illustrates the above function:
Program 1:
Output:
Elements: 14 11 11 11 12 13 13
Container is empty
Program 2: