On this page
operator==,<=>(ranges::zip_view::iterator)
|
(1) | (since C++23) |
|
(2) | (since C++23) |
Compares the underlying iterators.
Let current_ be the underlying tuple-like object of iterators to elements of adapted views.
x.current_ == y.current_if/*all-bidirectional*/<Const, Views...>is true.- Otherwise,
trueif there exists an integer0 <= i < sizeof...(Views)such thatbool(std::get<i>(x.current_) == std::get<i>(y.current_))is true. - Otherwise,
false.
2) Equivalent to
return x.current_ <=> y.current_;.
These functions are not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::ranges::zip_view::iterator<Const> is an associated class of the arguments.
The <, <=, >, >=, and != operators are synthesized from operator<=> and operator== respectively.
Parameters
| x, y | - | iterators to compare |
Return value
The result of comparison
See also
|
(C++23)
|
compares a sentinel with an iterator returned from zip_view::begin (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator_cmp