namespace kumi::result
{
template<product_type Tuple>
struct pop_front;
template<product_type Tuple>
using pop_front_t = typename pop_front<Tuple>::type;
}
constexpr auto pop_front(Tuple const &t)
Remove the first (if any) element of a kumi::product_type.
Definition: push_pop.hpp:71