operator==(ranges::chunk_by_view::iterator)
From cppreference.com
< cpp | ranges | chunk by view | iterator
friend constexpr bool operator==( const /*iterator*/& x, const /*iterator*/& y ); |
(1) | (since C++23) |
friend constexpr bool operator==( const /*iterator*/& x, std::default_sentinel_t ); |
(2) | (since C++23) |
Compares the underlying iterators.
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::ranges::chunk_by_view::iterator
is an associated class of the arguments.
The !=
operator is synthesized from operator==
.
[edit] Parameters
x, y | - | iterators to compare |
[edit] Return value
The result of comparison.
[edit] Example
This section is incomplete Reason: no example |