Espaces de noms
Variantes
Affichages
Actions

cpp/iterator/front insert iterator/operator++ : Différence entre versions

De cppreference.com
m (1 version : Translate from the English version)
m (r2.7.3) (robot Ajoute : de, en, es, it, ja, pt, ru, zh)
 
Ligne 1 : Ligne 1 :
 
{{tr_note}}
 
{{tr_note}}
 
{{cpp/iterator/inserter/operator++|front_insert_iterator}}
 
{{cpp/iterator/inserter/operator++|front_insert_iterator}}
 +
 +
 +
 +
 +
 +
 +
 +
 +

Version actuelle en date du 2 novembre 2012 à 16:11

 
 
Bibliothèque Iterator
Primitives Iterator
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
Adaptateurs Iterator
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
Itérateurs de flux
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
Opérations Iterator
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)
Gamme d'accès
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
Les fonctions membres
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++();
front_insert_iterator& operator++( int );
Ne fait rien. Ces surcharges d'opérateur sont fournis pour satisfaire aux exigences de OutputIterator. Ils permettent aux expressions *iter++=value et *++iter=value à être utilisé pour la production (insert), une valeur dans le conteneur sous-jacent .
Original:
Does nothing. These operator overloads are provided to satisfy the requirements of OutputIterator. They make it possible for the expressions *iter++=value and *++iter=value to be used to output (insert) a 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.

[modifier] Paramètres

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

[modifier] Retourne la valeur

*this