std::unordered_multiset::erase
De cppreference.com
< cpp | container | unordered multiset
|
|
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. |
| iterator erase( const_iterator position ); |
(1) | (ya que C + +11) |
| iterator erase( const_iterator first, const_iterator last ); |
(2) | (ya que C + +11) |
| size_type erase( const key_type& key ); |
(3) | (ya que C + +11) |
Elimina los elementos especificados del contenedor .
Original:
Removes specified elements from the container.
The text has been machine-translated via Google Translate.
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.
1)
Quita el elemento en
pos .Original:
Removes the element at
pos.The text has been machine-translated via Google Translate.
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.
2)
Elimina los elementos en el rango
[first; last) .Original:
Removes the elements in 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.
You can help to correct and verify the translation. Click here for instructions.
3)
Quita todos los elementos con el
key valor claveOriginal:
Removes all elements with the key value
keyThe text has been machine-translated via Google Translate.
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.
References and iterators to the erased elements are invalidated. Other iterators and references are not invalidated.
Contenido |
[editar] Parámetros
| pos | - | iterador al elemento de eliminar
Original: iterator to the element to remove The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first, last | - | serie de elementos que desea eliminar
Original: range of elements to remove The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| key | - | valor de la clave de los elementos que desea eliminar
Original: key value of the elements to remove The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
1-2)
Iterator tras el último elemento eliminado .
Original:
Iterator following the last removed element.
The text has been machine-translated via Google Translate.
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.
3)
Número de elementos quitados .
Original:
Number of elements removed.
The text has been machine-translated via Google Translate.
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.
[editar] Complejidad
1) Average case: constant, worst case: a.size()
3) Average case: a.count(key), worst case: a.size()
[editar] Ver también
| borra el contenido Original: clears the contents 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) | |