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