◐ Shell
clean mode source ↗

std::reverse_iterator::operator= — cppreference.com

De cppreference.com

<metanoindex/>

<metanoindex/>

<tbody> </tbody>

template< class U > reverse_iterator& operator=( const reverse_iterator<U>& other );

Copiez opérateur d'affectation. L'itérateur sous-jacent est affecté de la valeur de l'itérateur sous-jacente de other, c'est à dire other.base() .

Original:

Copy assignment operator. The underlying iterator is assigned the value of the underlying iterator of other, i.e. other.base().

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

Paramètres

other -

Adaptateur itérateur à attribuer

Original:

iterator adaptor to assign

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

Retourne la valeur

*this

Exemple

Voir aussi

construit un nouvel itérateur adaptateur

Original:

constructs a new iterator adaptor

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


(fonction membre publique) [edit]