std::reverse_iterator::operator=
Aus cppreference.com
< cpp | iterator | reverse 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. |
template< class U > reverse_iterator& operator=( const reverse_iterator<U>& other ); |
||
Kopieren Zuweisungsoperator. Die zugrunde liegende Iterator den Wert des zugrunde liegenden Iterator
other
zugeordnet, dh 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.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
other | - | Iterator-Adapter zugewiesen werden soll
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. |
[Bearbeiten] Rückgabewert
*this
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
baut einen neuen Iterator-Adapter 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. (öffentliche Elementfunktion) |