std::unordered_multimap::unordered_multimap
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| explicit unordered_multimap( size_type bucket_count = /*implementation-defined*/, const Hash& hash = Hash(), |
(1) | (ya que C + +11) |
| explicit unordered_multimap( const Allocator& alloc ); |
(1) | (ya que C + +11) |
| template< class InputIt > unordered_multimap( InputIt first, InputIt last, |
(2) | (ya que C + +11) |
| unordered_multimap( const unordered_multimap& other ); |
(3) | (ya que C + +11) |
| unordered_multimap( const unordered_multimap& other, const Allocator& alloc ); |
(3) | (ya que C + +11) |
| unordered_multimap( unordered_multimap&& other ); |
(4) | (ya que C + +11) |
| unordered_multimap( unordered_multimap&& other, const Allocator& alloc ); |
(4) | (ya que C + +11) |
| unordered_multimap( std::initializer_list<value_type> init, size_type bucket_count = /*implementation-defined*/, |
(5) | (ya que C + +11) |
bucket_count como un número mínimo de cubos para crear, hash como la función hash, equal como la función de comparar las claves y alloc como el asignador . 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. You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[first, last) rango .[first, last).You can help to correct and verify the translation. Click here for instructions.
other. Si no se proporciona alloc, asignador se obtiene llamando std::allocator_traits<allocator_type>::select_on_copy_construction(other) .other. If alloc is not provided, allocator is obtained by calling std::allocator_traits<allocator_type>::select_on_copy_construction(other).You can help to correct and verify the translation. Click here for instructions.
other utilizando la semántica de movimiento. Si no se proporciona alloc, asignador se obtiene por el movimiento de la construcción desde el asignador perteneciente a other .other using move semantics. If alloc is not provided, allocator is obtained by move-construction from the allocator belonging to other.You can help to correct and verify the translation. Click here for instructions.
init . init. You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
| alloc | - | asignador de usar para todas las asignaciones de memoria de este envase
Original: allocator to use for all memory allocations of this container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| bucket_count | - | mínimo número de cubos para usar en la inicialización. Si no se especifica, definido por la implantación valor predeterminado se utiliza
Original: minimal number of buckets to use on initialization. If it is not specified, implementation-defined default value is used The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| hash | - | función hash que se utiliza
Original: hash function to use The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| equal | - | función de comparación que se utiliza para todas las comparaciones clave de este envase
Original: comparison function to use for all key comparisons of this container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first, last | - | el rango a copiar los elementos de
Original: the range to copy the elements from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | otro recipiente para ser utilizado como fuente para inicializar los elementos del recipiente con
Original: another container to be used as source to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| init | - | lista de inicializadores para inicializar los elementos del recipiente con
Original: initializer list to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| Type requirements | ||
-InputIt must meet the requirements of InputIterator.
| ||
[editar] Complejidad
| This section is incomplete |
You can help to correct and verify the translation. Click here for instructions.
first y lastfirst and lastYou can help to correct and verify the translation. Click here for instructions.
otherotherYou can help to correct and verify the translation. Click here for instructions.
alloc se da y alloc != other.get_allocator(), lineal entonces .alloc is given and alloc != other.get_allocator(), then linear.You can help to correct and verify the translation. Click here for instructions.
initinitYou can help to correct and verify the translation. Click here for instructions.
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| asigna valores para el contenedor Original: assigns values to the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) | |