Difference between revisions of "cpp/execution/just"
From cppreference.com
Line 1: | Line 1: | ||
{{cpp/execution/title|just{{small|(auto ...&& values)}}}} | {{cpp/execution/title|just{{small|(auto ...&& values)}}}} | ||
{{ddcl|since=c++2x|header=execution| | {{ddcl|since=c++2x|header=execution| | ||
− | |||
execution::sender auto just( | execution::sender auto just( |
Revision as of 14:49, 28 January 2024
Defined in header <execution>
|
||
execution::sender auto just( auto ...&& values |
||
Parameters
values | - | input values which are decay-copied into the returned sender. |
Return value
Returns a sender with no completion schedulers, which sends the provided values.