template <, typename... T>
constexpr auto flat_tupelize_to(T&&... args)
    -> decltype(map_spread(
        flat_tupelizer_of_t<Type>({}),
        static_cast<decltype(args)&&>(args)...))

Description

Converts the given variadic arguments into a tuple in a way that spread return values are inserted into the current pack. If the arguments were mapped to zero arguments, the empty mapping is propagated backwards to the caller.

Declared at: libs/pika/pack_traversal/include/pika/pack_traversal/detail/pack_traversal_impl.hpp:249

Parameters

T&&... args