Sdílet prostřednictvím


front_inserter

Vytvoří iterátor, který může vložit prvky do přední části zadaného kontejneru.

template<class Container> 
   front_insert_iterator<Container> front_inserter( 
      Container& _Cont 
   );

Parametry

  • _Cont
    Objekt kontejneru, jehož přední má element vložen.

Vrácená hodnota

A front_insert_iterator přidružené k objektu kontejneru _Cont.

Poznámky

Členské funkce front_insert_iterator z front_insert_iterator třídy mohou být také použity.

V knihovně Standard Template Library argument musí odkazovat na jednu dvě sekvence kontejnerů, které mají členské funkce push_back: deque třídy nebo seznam třídy.

Příklad

// iterator_front_inserter.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main( )
{
   using namespace std;
   int i;
   list <int>::iterator L_Iter;

   list<int> L;
   for ( i = -1 ; i < 9 ; ++i )
   {
      L.push_back ( i );
   }

   cout << "The list L is:\n ( ";
   for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
      cout << *L_Iter << " ";
   cout << ")." << endl;

   // Using the template function to insert an element
   front_insert_iterator< list < int> > Iter(L);
   *Iter = 100;

   // Alternatively, you may use the front_insert member function
   front_inserter ( L ) = 200;

   cout << "After the front insertions, the list L is:\n ( ";
   for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
      cout << *L_Iter << " ";
   cout << ")." << endl;
}
  

Požadavky

Hlavička: <iterátor>

Obor názvů: std

Viz také

Referenční dokumentace

Standardní knihovna šablon