table of contents
std::ranges::chunk_by_view::iterator::operator*(3) | C++ Standard Libary | std::ranges::chunk_by_view::iterator::operator*(3) |
NAME¶
std::ranges::chunk_by_view::iterator::operator* - std::ranges::chunk_by_view::iterator::operator*
Synopsis¶
constexpr value_type operator*() const; (since C++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¶
This section is incomplete
Reason: no example
Category:¶
* Todo no example
2024.06.10 | http://cppreference.com |