<metanoindex/>
<tbody> </tbody> iterator insert_after( const_iterator pos, const T& value ); |
(1) | (seit C++11) |
iterator insert_after( const_iterator pos, T&& value ); |
(2) | (seit C++11) |
iterator insert_after( const_iterator pos, size_type count, const T& value ); |
(3) | (seit C++11) |
template< class InputIt > iterator insert_after( const_iterator pos, InputIt first, InputIt last ); |
(4) | (seit C++11) |
iterator insert_after( const_iterator pos, std::initializer_list<T> ilist ); |
(5) | (seit C++11) |
Fügt Elemente nach der angegebenen Position in dem Behälter .
Original:
Inserts elements after the specified position in 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-2)
Einsätze
value nachdem das Element, um auf die durch posOriginal:
inserts
value after the element pointed to by posThe 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)
Einsätze
count Kopien der value nach dem Element, auf das posOriginal:
inserts
count copies of the value after the element pointed to by posThe 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.
4)
Einsätze Elemente aus Bereich
[first, last) nach dem Element, auf das posOriginal:
inserts elements from range
[first, last) after the element pointed to by posThe 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.
5)
Einsätze Elemente aus Initialisierungsliste
ilist .Original:
inserts elements from initializer list
ilist.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.
Information on iterator invalidation is copied from hier
Parameter
| pos | - | Element nach dem der Inhalt eingefügt werden
Original: element after which the content will be inserted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| value | - | Wert des Elements einfügen
Original: element value to insert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first, last | - | das Spektrum der Elemente einzufügen
Original: the range of elements to insert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| ilist | - | Initialisierungsliste um die Werte aus einzufügen
Original: initializer list to insert the values from 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.
| ||
Rückgabewert
Iterator auf das eingefügte Element .
Original:
Iterator to the inserted 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.
Komplexität
Siehe auch
baut Elemente in-place nach einem Element Original: constructs elements in-place after an element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
| Elemente am Listenanfang einfügen (öffentliche Elementfunktion) | |