operator==(ranges::chunk_by_view::iterator)
From cppreference.com
< cpp | ranges | chunk by view | iterator
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
std::ranges::chunk_by_view
Member functions | ||||
Deduction guides | ||||
Iterator | ||||
operator==(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
The !=
operator is synthesized from operator==
.
Parameters
x, y | - | iterators to compare |
Return value
The result of comparison.
Example
This section is incomplete Reason: no example |