constexpr ranges::range_reference_t<V> operator*() const; | (since C++23) |
Returns the current element in current chunk in the chunk_view
.
Let parent_
be the underlying pointer to chunk_view
. Equivalent to: return **parent_->current_;
.
Before invocation of this operator the expression *this == std::default_sentinel
must be false.
(none).
The current element in current chunk.
(C++23) | returns an iterator to the current element (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_view/inner_iterator/operator*