Defined in header <execution> | ||
inlineconstexpr just_stopped_t just_stopped{}; struct just_stopped_t{/*unspecified*/}; | (since C++26) (customization point object) | |
Call signature | ||
execution::senderauto just_stopped(); | (since C++26) | |
A sender factory that returns a sender which completes immediately by calling the receiver’sset_stopped().
The expressionjust_stopped() isexpression-equivalent to/*make-sender*/(just_stopped)
The nameexecution::just_stopped denotes acustomization point object, which is a constfunction object of aliteralsemiregular class type. The cv-unqualified version of its type is a tag type denoted asexecution::just_stopped_t. SeeCustomizationPointObject for details.
| This section is incomplete Reason: no example |