std::insert_iterator::operator=
Aus 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> insert_iterator<Container>& operator=( const typename Container::value_type& value ); |
(1) | |
insert_iterator<Container>& operator=( typename Container::value_type&& value ); |
(2) | |
Fügt den angegebenen Wert
value in den Behälter .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->insert(iter, value); ++iter;2) Results in
container->insert(iter, std::move(value)); ++iter;Parameter
| value | - | der Wert eingefügt werden soll
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. |
Rückgabewert
*this
Beispiel
| This section is incomplete |