Espaces de noms
Variantes

std::unordered_multimap::unordered_multimap

De cppreference.com

<metanoindex/>

 
 
 
std :: unordered_multimap
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::unordered_multimap
unordered_multimap::~unordered_multimap
unordered_multimap::operator=
unordered_multimap::get_allocator
Les itérateurs
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::begin
unordered_multimap::cbegin
unordered_multimap::end
unordered_multimap::cend
Capacité
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::erase
unordered_multimap::size
unordered_multimap::max_size
Modificateurs
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::clear
unordered_multimap::insert
unordered_multimap::emplace
unordered_multimap::emplace_hint
unordered_multimap::erase
unordered_multimap::swap
Lookup
Original:
Lookup
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::count
unordered_multimap::find
unordered_multimap::equal_range
Interface seau
Original:
Bucket interface
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::begin2
unordered_multimap::end2
unordered_multimap::bucket_count
unordered_multimap::max_bucket_count
unordered_multimap::bucket_size
unordered_multimap::bucket
Politique de hachage
Original:
Hash policy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::load_factor
unordered_multimap::max_load_factor
unordered_multimap::rehash
unordered_multimap::reserve
Des observateurs
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_multimap::hash_function
unordered_multimap::key_eq
 
<tbody> </tbody>
explicit unordered_multimap( size_type bucket_count = /*implementation-defined*/, {{#pad:|27}} const Hash& hash = Hash(), {{#pad:|27}} const KeyEqual& equal = KeyEqual(), {{#pad:|27}} const Allocator& alloc = Allocator() );
(1) (depuis C++11)
explicit unordered_multimap( const Allocator& alloc );
(1) (depuis C++11)
template< class InputIt > unordered_multimap( InputIt first, InputIt last, {{#pad:|18}} size_type bucket_count = /*implementation-defined*/, {{#pad:|18}} const Hash& hash = Hash(), {{#pad:|18}} const KeyEqual& equal = KeyEqual(), {{#pad:|18}} const Allocator& alloc = Allocator() );
(2) (depuis C++11)
unordered_multimap( const unordered_multimap& other );
(3) (depuis C++11)
unordered_multimap( const unordered_multimap& other, const Allocator& alloc );
(3) (depuis C++11)
unordered_multimap( unordered_multimap&& other );
(4) (depuis C++11)
unordered_multimap( unordered_multimap&& other, const Allocator& alloc );
(4) (depuis C++11)
unordered_multimap( std::initializer_list<value_type> init, {{#pad:|18}} size_type bucket_count = /*implementation-defined*/, {{#pad:|18}} const Hash& hash = Hash(), {{#pad:|18}} const KeyEqual& equal = KeyEqual(), {{#pad:|18}} const Allocator& alloc = Allocator() );
(5) (depuis C++11)
Construit nouveau conteneur d'une variété de sources de données. Utilise éventuellement bucket_count utilisateur fourni en un nombre minimal de segments pour créer, hash que la fonction de hachage, equal que la fonction de comparaison des clés et que le dispositif d'attribution alloc .
Original:
Constructs new container from a variety of data sources. Optionally uses user supplied bucket_count as a minimal number of buckets to create, hash as the hash function, equal as the function to compare keys and alloc as the allocator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

1)

constructeur par défaut. Construit récipient vide .
Original:
default constructor. Constructs empty container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

construit le récipient avec le contenu de la gamme [first, last) .
Original:
constructs the container with the contents of the range [first, last).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3)

copier constructeur. Construit le récipient avec la copie du contenu de other. Si alloc n'est pas fourni, l'allocateur est obtenue en appelant std::allocator_traits<allocator_type>::select_on_copy_construction(other) .
Original:
copy constructor. Constructs the container with the copy of the contents of other. If alloc is not provided, allocator is obtained by calling std::allocator_traits<allocator_type>::select_on_copy_construction(other).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

4)

déplacer constructeur. Construit le récipient avec le contenu de other utilisant une sémantique de déplacement. Si alloc n'est pas disponible, l'allocateur est obtenu par déplacement de la construction de l'allocateur appartenant à other .
Original:
move constructor. Constructs the container with the contents of other using move semantics. If alloc is not provided, allocator is obtained by move-construction from the allocator belonging to other.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

5)

construit le récipient avec le contenu de la liste d'initialisation init .
Original:
constructs the container with the contents of the initializer list init.
The text has been machine-translated via Google Translate.