std::move_iterator::operator=
De cppreference.com
< cpp | iterator | move iterator
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class U > move_iterator& operator=( const move_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.
You can help to correct and verify the translation. Click here for instructions.
Sommaire |
[modifier] 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. |
[modifier] Retourne la valeur
*this
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] 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) |