std::back_insert_iterator::operator=
Da cppreference.com
< cpp | iterator | back insert iterator
![]() |
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. |
back_insert_iterator<Container>& operator=( const typename Container::value_type& value ); |
(1) | |
back_insert_iterator<Container>& operator=( typename Container::value_type&& value ); |
(2) | |
Insere o
value
valor dado ao recipiente.Original:
Inserts the given value
value
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.
You can help to correct and verify the translation. Click here for instructions.
1) Results in container->push_back(value)
2) Results in container->push_back(std::move(value))
[editar] Parâmetros
value | - | o valor a ser inserido
Original: the 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. |
[editar] Valor de retorno
*this
[editar] Exemplo
Esta seção está incompleta |