template <typename T,
          typename Allocator,
          typename... Ts>
std::enable_if_t<
    std::is_constructible_v<T, Ts&&...> ||
        std::is_void_v<T>,
    future<T>>
make_ready_future_alloc(const Allocator& a,
                        Ts&&... ts)

Description

////////////////////////////////////////////////////////////////////////

Declared at: libs/pika/futures/include/pika/futures/future.hpp:1266

Parameters

const Allocator& a
Ts&&... ts