std::insert_iterator::operator= — cppreference.com
De cppreference.com
<metanoindex/>
<metanoindex/>
<tbody> </tbody>
|
|
(1) | |
|
|
(2) | |
Insère le value valeur donnée au conteneur .
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.
1) Results in container->insert(iter, value); ++iter;
2) Results in container->insert(iter, std::move(value)); ++iter;
Paramètres
| value | - | la valeur à insérer Original: the value to insert The text has been machine-translated via Google Translate. |
Retourne la valeur
*this