Retrieves the front of a tuple.
namespace kumi::result
{
template<product_type Tuple>
struct front;
template<product_type Tuple>
using front_t = typename front<Tuple>::type;
}
constexpr decltype(auto) front(Tuple &&t)
Retrieves the front of a tuple.
Definition back-front.hpp:38