Sdílet prostřednictvím


front_insert_iterator::container_type

Typ, který představuje kontejner, do kterého má být přední kurzoru.

typedef Container container_type;

Poznámky

Typ je synonymum pro parametr šablony kontejner.

Příklad

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

int main( )
{
   using namespace std;

   list<int> L1;
   front_insert_iterator<list<int> >::container_type L2 = L1;
   front_inserter ( L2 ) = 20;
   front_inserter ( L2 ) = 10;
   front_inserter ( L2 ) = 40;

   list <int>::iterator vIter;
   cout << "The list L2 is: ( ";
   for ( vIter = L2.begin ( ) ; vIter != L2.end ( ); vIter++)
      cout << *vIter << " ";
   cout << ")." << endl;
}
  

Požadavky

Záhlaví: <iterator>

Obor názvů: std

Viz také

Referenční dokumentace

front_insert_iterator Class

Standardní šablona knihovny