1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

update doc

This commit is contained in:
neargye 2024-11-20 00:07:21 +02:00
parent 84990c60b2
commit 06741ec03f
2 changed files with 60 additions and 7 deletions

View file

@ -22,11 +22,24 @@ If you like this project, please consider donating to one of the funds that help
## [Features & Examples](example/)
* Enum value to string
* Basic
```cpp
#include <magic_enum/magic_enum.hpp>
//....
#include <iostream>
enum class Color : { RED = -10, BLUE = 0, GREEN = 10 };
int main() {
Color c1 = Color::RED;
std::cout << magic_enum::enum_name(c1) << std::endl; // RED
return 0;
}
```
* Enum value to string
```cpp
Color color = Color::RED;
auto color_name = magic_enum::enum_name(color);
// color_name -> "RED"