◐ Shell
clean mode source ↗

std::unordered_multimap::erase – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

iterator erase( const_iterator position );

(1) (seit C++11)

iterator erase( const_iterator first, const_iterator last );

(2) (seit C++11)

size_type erase( const key_type& key );

(3) (seit C++11)

Entfernt den angegebenen Elemente aus dem Container .

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.

1)

Entfernt das Element am 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.

2)

Entfernt die Elemente im Bereich [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.

3)

Entfernt alle Elemente mit dem Schlüssel-Wert key

Original:

Removes all elements with the key value key

The text has been machine-translated via Google Translate.
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.

Parameter

pos -

Iterator auf das Element zu entfernen

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 -

Bereichs von Elementen zu entfernen

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 -

Schlüsselwert der Elemente zu entfernen

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.

Rückgabewert

1-2)

Iterator nach der letzten entfernt Element .

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.

3)

Anzahl der Elemente entfernt .

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.

Komplexität

1) Average case: constant, worst case: a.size()

2) Average case: std::distance(first, last), worst case: a.size()

3) Average case: a.count(key), worst case: a.size()

Siehe auch

löscht den Inhalt

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.


(öffentliche Elementfunktion) [edit]