std::execution::into_variant
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
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.