template <std::size_t Depth, typename T>
auto functional_unwrap_depth_impl(T&& callable)
    -> functional_unwrap_impl<
        typename std::decay<T>::type,
        Depth>

Description

Returns a callable object which unwraps the futures contained in the given pack args until the depth Depth.

Declared at: libs/pika/pack_traversal/include/pika/pack_traversal/detail/unwrap_impl.hpp:296

Parameters

T&& callable