A RetroSearch Logo

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

Search Query:

Showing content from https://cplusplus.com/reference/unordered_set/unordered_multiset/clear/ below:

public member function

<unordered_set>

std::unordered_multiset::clear

Clear content

All the elements in the unordered_multiset 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
24
25
26
// unordered_multiset::clear
#include <iostream>
#include <string>
#include <unordered_set>

int main ()
{
  std::unordered_multiset<std::string> myums =
    {"chair","table","lamp","sofa","chair"};

  std::cout << "myums contains:";
  for (const std::string& x: myums) std::cout << " " << x;
  std::cout << std::endl;

  myums.clear();
  myums.insert("bed");
  myums.insert("bed");
  myums.insert("wardrobe");
  myums.insert("nightstand");

  std::cout << "myums contains:";
  for (const std::string& x: myums) std::cout << " " << x;
  std::cout << std::endl;

  return 0;
}

Possible output:
myums contains: sofa lamp table chair chair
myums contains: nightstand wardrobe bed bed


Complexity Linear on size (destructors).

Iterator validity All iterators, pointers and references are invalidated.

See also
unordered_multiset::erase
Erase elements (public member function)
unordered_multiset::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