Namensräume
Varianten
Aktionen

std::insert_iterator::insert_iterator

Aus cppreference.com

 
 
Iterator Bibliothek
Iterator Primitiven
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Iterator Adaptern
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator
Stream-Iteratoren
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Iterator Operationen
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
advance
distance
prev(C++11)
next(C++11)
Reichen Zugang
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
begin(C++11)
end(C++11)
 
std::insert_iterator
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
insert_iterator::insert_iterator
insert_iterator::operator=
insert_iterator::operator*
insert_iterator::operator++
insert_iterator::operator++(int)
 
explicit insert_iterator( Container& c, typename Container::iterator i );
Initialisiert den darunterliegenden Zeiger auf den Behälter, um &c and the interlying iterator to iter .
Original:
Initializes the underlying pointer to the container to &c and the interlying iterator to iter.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten] Parameter

c -
Behälter, um die Einleger mit initialisieren
Original:
container to initialize the inserter with
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iter -
Iterator auf den Inserter mit initialisieren
Original:
iterator to initialize the inserter with
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.