std::forward_list::insert_after
De cppreference.com
|
|
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. |
<metanoindex/>
<tbody> </tbody> iterator insert_after( const_iterator pos, const T& value ); |
(1) | (desde C++11) |
iterator insert_after( const_iterator pos, T&& value ); |
(2) | (desde C++11) |
iterator insert_after( const_iterator pos, size_type count, const T& value ); |
(3) | (desde C++11) |
template< class InputIt > iterator insert_after( const_iterator pos, InputIt first, InputIt last ); |
(4) | (desde C++11) |
iterator insert_after( const_iterator pos, std::initializer_list<T> ilist ); |
(5) | (desde C++11) |
Insere elementos após a posição especificada no recipiente.
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)
inserções
value após o elemento apontado pelo 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)
count insere cópias do value após o elemento apontado por 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)
insere elementos de
[first, last) gama após o elemento apontado por 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)
insere elementos da lista de inicializador
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 aqui
Parâmetros
| pos | - | elemento, após o que o conteúdo vai ser inserido
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 | - | elemento de valor para inserir
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 | - | a gama de elementos para inserir
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 | - | inicializador lista para inserir os valores de
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.
| ||
Valor de retorno
Iterador para o elemento inserido.
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.
Complexidade
| Esta seção está incompleta |
Veja também
constrói elementos no local depois de um elemento 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. (função pública membro) | |
insere elementos no início Original: inserts elements to the beginning The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (função pública membro) | |