Namespaces
Variants
Views
Actions

std::execution::into_variant

From cppreference.com
< cpp‎ | execution
Revision as of 10:08, 4 October 2024 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
 
Defined in header <execution>
execution::sender auto into_variant( execution::sender auto snd );
(since C++26)

[edit] Parameters

snd - input sender which can send multiple sets of values depending on runtime conditions.

[edit] Return value

Returns a sender that sends a variant of tuples of all the possible sets of types sent by the input sender. The helper function turns them into a single variant value.