#include <kumi/tuple.hpp>
#include <iostream>
{
using namespace kumi::literals;
std::cout <<
t[0
_c] <<
"\n";
std::cout <<
t[1
_c] <<
"\n";
std::cout <<
t[2
_c] <<
"\n";
std::cout << t[kumi::index<3>] << "\n";
}
constexpr auto from_tuple(tuple< Ts... > const &t)
Converts a kumi::tuple to an instance of an arbitrary type.
Definition convert.hpp:59
Fixed-size collection of heterogeneous values.
Definition tuple.hpp:35