Namensräume
Varianten

std::front_insert_iterator::operator*

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::front_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.
front_insert_iterator::front_insert_iterator
front_insert_iterator::operator=
front_insert_iterator::operator*
front_insert_iterator::operator++
front_insert_iterator::operator++(int)
 
front_insert_iterator& operator*();
Tut nichts, diese Member-Funktion ist vorgesehen, um die Anforderungen der OutputIterator zu befriedigen .
Original:
Does nothing, this member function is provided to satisfy the requirements of OutputIterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Es gibt den Iterator selbst, die es ermöglichen, Code wie *iter = value zum Ausgang (Einlage) der Wert in den darunterliegenden Behälter verwenden macht .
Original:
It returns the iterator itself, which makes it possible to use code such as *iter = value to output (insert) the value into the underlying container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Parameter

(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Rückgabewert

*this

close