I really like the syntax of our Java DataFixerUpper library, so I tried replicating something similar in C++ with full compile-time support and I'm very happy with what I've landed with:


struct foo {
int a;
unsigned int b;
char c;
};

static constexpr auto […]

Comments