The
unordered_multimap::clear() is a built-in function in C++ STL which clears the contents of the unordered_multimap container. The final size of the container after the call of the function is 0.
Syntax:
unordered_multimap_name.clear()
Parameters: The function does not accept any parameter.
Return Value: It returns nothing.
Below programs illustrates the above function:
Program 1:
Output:
Key and Elements of multimap are:
{15, 150}
{30, 300}
{20, 200}
{10, 100}
{10, 100}
Size of container after function call: 0
Program 2: