std::unordered_multiset::empty
From Cppreference
< cpp | container | unordered multiset
bool empty() const;
|
(C++11 feature) | |
Checks if the container has no elements, i.e. whether begin() == end().
Contents |
[edit] Parameters
(none)
[edit] Return value
true if the container is empty, false otherwise
[edit] Exceptions
[edit] Complexity
Constant
See also
|
returns the number of elements (public member function) |