We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Working with arrays in a compile time context is not the easiest thing. It is much more convenient to work with integer_list. Boost describe ( https://www.boost.org/doc/libs/1_79_0/libs/describe/doc/html/describe.html ) provides also reflection on enums, but uses a slightly different structure:
«
A descriptor list is a type of the form L<D1, D2, …, Dn>, where L is of the form template<class… T> struct L {}; and Di is of the form
struct Di { static constexpr E value; static constexpr char const* name; };
»
It would be nice if we could also get this, in addition to what is currently provided, with magic_enum.
The text was updated successfully, but these errors were encountered:
Oh, I haven't seen this library in boost yet, I'll take a look at it.
Sorry, something went wrong.
No branches or pull requests
Working with arrays in a compile time context is not the easiest thing. It is much more convenient to work with integer_list. Boost describe ( https://www.boost.org/doc/libs/1_79_0/libs/describe/doc/html/describe.html ) provides also reflection on enums, but uses a slightly different structure:
«
A descriptor list is a type of the form L<D1, D2, …, Dn>, where L is of the form template<class… T> struct L {}; and Di is of the form
struct Di
{
static constexpr E value;
static constexpr char const* name;
};
»
It would be nice if we could also get this, in addition to what is currently provided, with magic_enum.
The text was updated successfully, but these errors were encountered: