A RetroSearch Logo

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

Search Query:

Showing content from https://www.tutorialspoint.com/cpp_standard_library/cpp_multimap_move_costructor.htm below:

C++ Map Library - multimap() Function

C++ Map Library - multimap() Function Description

The C++ function std::multimap::multimap() constructs a multimap with the contents of other using move semantics.

Declaration

Following is the declaration for std::multimap::multimap() function form std::map header.

C++11
multimap (multimap&& other);
multimap (multimap&& other, const allocator_type& alloc);
Parameters Return value

Constructor never return value.

Exceptions

No effect on container if exception is thrown.

Time complexity

Linear i.e. O(n)

Example

The following example shows the usage of std::multimap::multimap() function.

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Multimap with duplicates */
   multimap<char, int> m1 = {
         {'a', 1},
         {'a', 2},
         {'b', 3},
         {'c', 4},
         {'c', 5},
               };

   multimap<char, int>m2(move(m1));

   cout << "Multimap contains following elements:" << endl;

   for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

Multimap contains following elements:
a = 1
a = 2
b = 3
c = 4
c = 5

map.htm


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