operator==(ranges::join_with_view::iterator, ranges::join_with_view::sentinel)
From cppreference.com
< cpp | ranges | join with view | sentinel
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
std::ranges::join_with_view
Member functions | ||||
Deduction guides | ||||
Iterator | ||||
Member functions | ||||
Non-member functions | ||||
Sentinel | ||||
operator==(join_with_view::sentinel)
(C++23)
|
friend
constexpr
bool operator==
(
const
/*iterator*/
<Const>
& x, const
/*sentinel*/
& y )
;
|
(since C++23) | |
Compares the underlying iterator of x with the underlying sentinel of y. The comparison returns true if the underlying outer iterator stored in x
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when join_with_view::sentinel<Const>
The !=
operator is synthesized from operator==
.
Parameters
x | - | iterator to compare |
y | - | sentinel to compare |
Return value
x.outer_it_ == y.end_, where outer_it_
denotes the underlying outer iterator, end_
Example
This section is incomplete Reason: no example |