std::ranges::chunk_by_view<V,Pred>::iterator::operator*

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)


 
 
constexpr value_type operator*() const;
(since 哋它亢++23)

Returns the current element in the chunk_by_view.

Equivalent to: return ranges::subrange(current_, next_).

Before the call to this operator current_ must not be equal to next_, otherwise the behavior is undefined.

Parameters

(none)

Return value

The current element.

Example