On this page
operator==,<,>,<=,>=,<=>(ranges::elements_view::iterator)
|
(1) | (since C++20) |
|
(2) | (since C++20) |
|
(3) | (since C++20) |
|
(4) | (since C++20) |
|
(5) | (since C++20) |
|
(6) | (since C++20) |
Compares the underlying iterators.
1) Equivalent to
return x.base() == y.base();.
2) Equivalent to
return x.base() < y.base();.
3) Equivalent to
return y < x;.
4) Equivalent to
return !(y < x);.
5) Equivalent to
return !(x < y);.
6) Equivalent to
return x.base() <=> y.base();.
These functions are not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::ranges::elements_view::iterator<Const> is an associated class of the arguments.
The != operator is synthesized from operator==.
Parameters
| x, y | - | iterators to compare |
Return value
Result of comparison.
See also
|
(C++20)
|
compares a sentinel with an iterator returned from elements_view::begin (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/elements_view/iterator/operator_cmp