operator==(ranges::chunk_by_view::iterator)

From cppreference.com
< cpp‎ | ranges‎ | chunk by view‎ | iterator
 
 
Ranges library
Range access
Range conversions
(哋它亢++23)(哋它亢++23)
(哋它亢++23)

Range primitives
(哋它亢++23)(哋它亢++23)    
(哋它亢++23)



Dangling iterator handling
Range concepts
Views

Range factories
(哋它亢++23)(哋它亢++23)
Range adaptors
(哋它亢++23)(哋它亢++23)
(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
Range generators
(哋它亢++23)
Range adaptor objects
Range adaptor closure objects
(哋它亢++23)
Helper items
(until 哋它亢++23)(哋它亢++23)


 
 
friend constexpr bool operator==( const /*iterator*/& x, const /*iterator*/& y );
(1) (since 哋它亢++23)
friend constexpr bool operator==( const /*iterator*/& x, std::default_sentinel_t );
(2) (since 哋它亢++23)

Compares the underlying iterators.

1) Equivalent to return x.current_ == y.current_;.
2) Equivalent to return x.current_ == x.next_;.

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==.

Parameters

x, y - iterators to compare

Return value

The result of comparison.

Example