◐ Shell
clean mode source ↗

std::back_insert_iterator::operator= – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

back_insert_iterator<Container>& operator=( const typename Container::value_type& value );

(1)

back_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.

1) Results in container->push_back(value)

2) Results in container->push_back(std::move(value))

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