#include <kumi/kumi.hpp>
#include <iostream>
int main()
{
using namespace kumi::literals;
kumi::record r = {
"x"_f = 1,
"y"_f = 2.f,
"z"_f =
'#',
"t"_f = 12};
}
constexpr auto members_of(as< T >) noexcept
Extracts the names of the fields of a kumi::product_type.
Definition meta.hpp:25
Lightweight type-wrapper.
Definition as.hpp:25
Fixed-size collection of heterogeneous fields necessarily named, names are unique.
Definition traits.hpp:366
Fixed-size collection of heterogeneous values.
Definition tuple.hpp:37