std::ranges::chunk_view<V>::outer-iterator::operator*

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


 
std::ranges::chunk_view
Member functions
Classes for input_ranges
Deduction guides
outer-iterator
chunk_view::outer-iterator::operator*
(C++23)
outer-iterator::value_type
inner-iterator
 
constexpr value_type operator*() const;
(since C++23)

Returns the current chunk in the chunk_view.

Let parent_ be the underlying pointer, and value_type be a nested class that is the value type of the iterator.

Equivalent to: return value_type(*parent_);.

Before invocation of this operator the expression *this == std::default_sentinel must be false.

Parameters

(none)

Return value

The current element (a chunk).

Example