#include <kumi/kumi.hpp>
#include <iostream>
using namespace kumi::literals;
{
}
int main()
{
int i;
double d;
float f;
std::cout << i << " " << d << " " << f << "\n";
}
constexpr auto generate(Function const &f) noexcept
Creates a kumi::tuple containing N applications of the f Callable.
Definition generate.hpp:70
constexpr auto tie(Ts &... ts) -> record< field_capture< Fields, Ts & >... >
Creates a kumi::record of lvalue references to its arguments.
Definition record.hpp:290
Fixed-size collection of heterogeneous fields necessarily named, names are unique.
Definition traits.hpp:366