std::execution::just

Header: <execution>

A sender factory that returns a sender which completes immediately by calling the receiver’s .

# Declarations

struct just_t { /*unspecified*/ };

(since C++26)

inline constexpr just_t just{};

(since C++26) (customization point object)

Call signature
execution::sender auto just( auto&&... values );

(since C++26)

# Example

This section is incompleteReason: no example