operator-(move_iterator)
Aus 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. |
template< class Iterator > typename reverse_iterator<Iterator>::difference_type |
(bis C + +11) | |
template< class Iterator1, class Iterator2 > auto operator-( const move_iterator<Iterator1>& lhs, |
(seit C++11) | |
Gibt den Abstand zwischen zwei Iterator-Adapter .
Original:
Returns the distance between two iterator adaptors.
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.
[Bearbeiten] Parameter
lhs, rhs | - | Iterator-Adapter zur Berechnung der Differenz
Original: iterator adaptors to compute the difference of 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
lhs.base() - rhs.base()
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |