constexpr auto operator*() const; | (since C++23) |
Returns the current element in the cartesian_product_view
. Equivalent to:
return /*tuple-transform*/([](auto& i) -> decltype(auto) { return *i; }, current_);
.
(none).
The current element.
(C++23) | accesses an element by index (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator*