Compares the underlying iterators.
return x.current_ == y.current_;
, where current_
is the underlying iterator.return x.current_ < y.current_;
, where current_
is the underlying iterator.return y < x;
return !(y < x);
return !(x < y);
return x.current_ <=> y.current_;
, where current_
is the underlying iterator.These functions are not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::ranges::transform_view::iterator<Const>
is an associated class of the arguments.
The !=
operator is synthesized from operator==
.
x, y | - | iterators to compare |
result of comparison.
(C++20) | compares a sentinel with an iterator returned from transform_view::begin (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/transform_view/iterator/operator_cmp