C++:
enum Color { red, green, blue }; auto name = to_enum_string(Color::Red); // "Red"
... and where does that `to_enum_string` come from exactly? It doesn't seem to be built-in, which is the point of the parent comment.
... and where does that `to_enum_string` come from exactly? It doesn't seem to be built-in, which is the point of the parent comment.