◐ Shell
clean mode source ↗

std::front_insert_iterator – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<iterator>

template< class Container > class front_insert_iterator : public std::iterator< std::output_iterator_tag, void,void,void,void >

std::front_insert_iterator ist ein Output-Iterator die Elemente prepends einen Behälter für die es konstruiert wurde, unter Verwendung des Containers push_front() Member-Funktion, wenn der Iterator (ob dereferenziert oder nicht) wird zugewiesen. Inkrementieren des std::front_insert_iterator ist ein no-op .

Original:

std::front_insert_iterator is an output iterator that prepends elements to a container for which it was constructed, using the container's push_front() member function whenever the iterator (whether dereferenced or not) is assigned to. Incrementing the std::front_insert_iterator is a no-op.

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

Mitglied Typen

Mitglied Typ

Original:

Member type

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

Definition
container_type Container

Member-Funktionen

Vorlage:cpp/iterator/inserter/dsc operator++

baut eine neue front_insert_iterator

Original:

constructs a new front_insert_iterator

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


(öffentliche Elementfunktion) [edit]

Fügt ein Objekt in dem zugehörigen Behälter

Original:

inserts an object into the associated container

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


(öffentliche Elementfunktion) [edit]
no-op
(öffentliche Elementfunktion) [edit]

Mitglied widerspricht

Member name

Original:

Member name

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

Definition
container (geschützt)

ein Zeiger vom Typ Container*

Original:

a pointer of type Container*

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

Inherited from std::iterator

Member types

Mitglied Typ

Original:

Member type

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

Definition
value_type void
difference_type void
pointer void
reference void
iterator_category std::output_iterator_tag

Beispiel

#include <vector>
#include <deque>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
    std::vector<int> v{1,2,3,4,5};
    std::deque<int> d;
    std::copy(v.begin(), v.end(),
              std::front_insert_iterator<std::deque<int>>(d)); // or std::front_inserter(d)
    for(int n : d)
        std::cout << n << ' ';
    std::cout << '\n';
}

Output:

Siehe auch

schafft eine std::front_insert_iterator des Typs aus dem Argument abgeleitet

Original:

creates a std::front_insert_iterator of type inferred from the argument

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


(Funktions-Template) [edit]

Iterator Adapter für die Zuführung am Ende eines Behälters

Original:

iterator adaptor for insertion at the end of a container

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


(Klassen-Template) [edit]

Iterator Adapter zum Einsetzen in einen Behälter

Original:

iterator adaptor for insertion into a container

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


(Klassen-Template) [edit]