operator-(move_iterator)
Da cppreference.com.
< cpp | iterator | move iterator
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
template< class Iterator > typename reverse_iterator<Iterator>::difference_type |
(fino al c++11) | |
template< class Iterator1, class Iterator2 > auto operator-( const move_iterator<Iterator1>& lhs, |
(dal C++11) | |
Restituisce la distanza tra due adattatori iteratore.
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.
Parametri
lhs, rhs | - | adattatori iteratore per calcolare la differenza di
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. |
Valore di ritorno
lhs.base() - rhs.base()
Esempio
This section is incomplete Reason: no example |