constexpr auto operator*() const; | (since C++23) |
Returns a std::tuple
that consists of underlying pointed-to elements.
Let current_
denote the underlying tuple-like object that holds iterators to elements of adapted views. Equivalent to:
return /*tuple-transform*/([](auto& i) -> decltype(auto) { return *i; }, current_);
(none).
The current tuple-like element.
operator->
is not provided.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/zip_view/iterator/operator*