Template Function concore::v1::set_value¶
Defined in File execution.hpp
Function Documentation¶
-
template<typename
Receiver, typename ...Vs>
voidconcore::v1::set_value(Receiver &&r, Vs&&... vs)¶ Customization point object that can be used to set values to receivers.
This is called by a sender whenever the sender has finished work and produces some values. This can be called even if the sender doesn’t have any values to send to the receiver.
- Parameters
r: The receiver object that is signaled about sender’s successvs: The values sent by the sender
The
Receivertype should model concepts receiver andreceiver_of<Vs...>.