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.
(none).
The current element (a chunk).
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_view/outer_iterator/operator*