template <typename F, typename Tuple>
inline constexpr typename detail::
    invoke_fused_result<F, Tuple>::type
    invoke_fused(F&& f, Tuple&& t)

Description

Invokes the given callable object f with the content of the sequenced type t (tuples, pairs)

Declared at: libs/pika/functional/include/pika/functional/invoke_fused.hpp:86

Parameters

F&& f
Must be a callable object. If f is a member function pointer, the first argument in the sequenced type will be treated as the callee (this object).
Tuple&& t
A type whose contents are accessible through a call to pika#get.

Returns

The result of the callable object when it's called with the content of the given sequenced type.