std::back_insert_iterator::operator=
De cppreference.com
[] |
Esta pgina se ha traducido por ordenador/computador/computadora de la versin en ingls de la Wiki usando Google Translate.
La traduccin puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versin original. Puedes ayudar a corregir los errores y mejorar la traduccin. Para instrucciones haz clic aqu. |
back_insert_iterator<Container>&
operator=( const typename Container::value_type& value );
|
(1) | |
back_insert_iterator<Container>&
operator=( typename Container::value_type&& value );
|
(2) | |
Inserta el
value valor dado al contenedor .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))Parmetros
| value | - | el valor a insertar
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. |
Valor de retorno
*this
Ejemplo
| Esta seccin est incompleta |