std::unordered_multimap::clear
From cppreference.com
< cpp | container | unordered multimap
| void clear(); |
(since C++11) | |
Removes all elements from the container. The past-the-end iterators are not invalidated.
Contents |
Parameters
(none)
Return value
(none)
Exceptions
Complexity
Linear in the size of the container.
See also
| erases elements (public member function) | |