Magic Enum C++
Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code (by Neargye)
Nameof C++
Nameof operator for modern C++, simply obtain the name of a variable, type, function, macro, and enum (by Neargye)
| Magic Enum C++ | Nameof C++ | |
|---|---|---|
| 46 | 5 | |
| 6,103 | 2,323 | |
| 1.2% | 0.8% | |
| 8.0 | 4.6 | |
| 7 days ago | 12 days ago | |
| C++ | C++ | |
| MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Magic Enum C++
Posts with mentions or reviews of Magic Enum C++.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-08.
- Magic Enum C++: Header-only C++17 library provides static reflection for enums
-
My Open Source Journey Begins with GitHub & Magic Enum
https://github.com/Neargye/magic_enum I chose this project because, while experimenting with enums in my course management project, I realized that I was writing a lot of boilerplate code. I even tried applying generic programming by using the library to avoid meaningless pointers and experimented with templates, but in the end, this approach made the code more complicated than I had thought. In C++, enums are not very flexible by default, it’s not possible to easily iterate through them or convert them to and from strings. This often results in repetitive code and makes programs more prone to errors. With the help of modern C++17 features, however, libraries like magic_enum can make our lives much easier by providing static reflection and avoiding the need for manual stuff. Enums are also a great tool for APIs instead of introducing unnecessary layers of inheritance and polymorphism which could lead to confusion, we can use enums to keep the design simple and clear.
-
What C++ library do you wish existed but hasn’t been created yet?
I'm not sure this is quite what you're asking for, but this library has been super helpful to me in the past : https://github.com/Neargye/magic_enum
- Usable Magic Enums for C++
-
Fully Permissive License C++ Logger For Embedded System
Also, a shoutout to Magic Enum: https://github.com/Neargye/magic_enum
- Favorite Ways of Stringifying Enums
-
enum_name (yet another enum to/from string conversion utility >=C++11)
What does this have to offer over magic_enum?
-
quill v2.7.0 released - Asynchronous Low Latency C++ Logging Library
But it's a hack, and I prefer not to use hacks in production, because of their significant limitations:
-
Enums print numbers instead of words
You can either write a to string(view) function for your enum or use https://github.com/Neargye/magic_enum
-
Enums with methods
Why reinvent the wheel? magic_enum
Nameof C++
Posts with mentions or reviews of Nameof C++.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-10-27.
What are some alternatives?
When comparing Magic Enum C++ and Nameof C++ you can also consider the following projects:
cppbor - An implementation of cbor using C++ 17 variants
cppcodec - Header-only C++11 library to encode/decode base64, base64url, base32, base32hex and hex (a.k.a. base16) as specified in RFC 4648, plus Crockford's base32. MIT licensed with consistent, flexible API.
protozero - Minimalist protocol buffer decoder and encoder in C++
LeapSerial - The Leap Motion cross-format, cross-platform declarative serialization library
cereal - A C++11 library for serialization
smf - Fastest RPC in the west