Namespaces
Variants
Views
Actions

std::ranges::cartesian_product_view<First, Vs...>::iterator<Const>::operator*

From cppreference.com
< cpp‎ | ranges‎ | cartesian product view‎ | iterator
Revision as of 03:36, 24 April 2023 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
Ranges library
Range adaptors
 
 
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_);.

Contents

[edit] Parameters

(none)

[edit] Return value

The current element.

[edit] Example

[edit] See also

accesses an element by index
(public member function)