A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://cplusplus.com/reference/unordered_map/unordered_multimap/clear/ below:

public member function

<unordered_map>

std::unordered_multimap::clear

Clear content

All the elements in the unordered_multimap container are dropped: their destructors are called, and they are removed from the container, leaving it with a size of 0.

Parameters none

Return value none

Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// clearing unordered_multimap
#include <iostream>
#include <string>
#include <unordered_map>

int main ()
{
  std::unordered_multimap<std::string,std::string> myumm =
         { {"Tom","Produce"}, {"Bob","Toys"}, {"Bob","Garden"} };

  std::cout << "myumm contains:";
  for (auto& x: myumm) std::cout << " " << x.first << ":" << x.second;
  std::cout << std::endl;

  myumm.clear();
  myumm.insert(std::make_pair("Bob","Jail"));

  std::cout << "myumm contains:";
  for (auto& x: myumm) std::cout << " " << x.first << ":" << x.second;
  std::cout << std::endl;

  return 0;
}

Possible output:
myumm contains: Tom:Produce Bob:Toys Bob:Garden
myumm contains: Bob:Jail


Complexity Linear on size (destructors).

Iterator validity All iterators, pointers and references are invalidated.

See also
unordered_multimap::erase
Erase elements (public member function)
unordered_multimap::empty
Test whether container is empty (public member function)

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4