pfr::structure_to_tuple — Creates a std::tuple from fields of an simple aggregate val.
std::tuple
val
// In header: <pfr/core.hpp> template<typename T> constexpr auto structure_to_tuple(const T & val);
Example:
struct my_struct { int i, short s; }; my_struct s {10, 11}; std::tuple<int, short> t = pfr::structure_to_tuple(s); assert(get<0>(t) == 10);