operator<,<=,>,>=(std::reverse_iterator) — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(1) | |
|
|
(2) | |
|
|
(3) | |
|
|
(4) | |
|
|
(5) | |
|
|
(6) | |
Compare les itérateurs sous-jacents. Inverse comparisons are applied in order to take into account that the iterator order is reversed.
Original:
Compares the underlying iterators. Inverse comparisons are applied in order to take into account that the iterator order is reversed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Paramètres
| lhs, rhs | - | adaptateurs itérateur à comparer Original: iterator adaptors to compare The text has been machine-translated via Google Translate. |
Valeur de retour
1) lhs.base() == rhs.base()
2) lhs.base() != rhs.base()
3) lhs.base() > rhs.base()
4) lhs.base() >= rhs.base()
5) lhs.base() < rhs.base()
6) lhs.base() <= rhs.base()