namespace kumi::result
{
template<product_type Tuple,
typename T>
struct push_front;
template<product_type Tuple, typename T>
}
constexpr auto push_front(Tuple const &t, T &&v)
Constructs a tuple by adding a value v at the beginning of t.
Definition push_pop.hpp:38
constexpr auto from_tuple(tuple< Ts... > const &t)
Converts a kumi::tuple to an instance of an arbitrary type.
Definition convert.hpp:59