@[email protected]M to [email protected]English • 8 months agoP2996R4 - Reflection for C++26isocpp.orgmessage-square3fedilinkarrow-up110arrow-down10
arrow-up110arrow-down1external-linkP2996R4 - Reflection for C++26isocpp.org@[email protected]M to [email protected]English • 8 months agomessage-square3fedilink
minus-square@riodoro1link2•edit-28 months ago“Simple” enum to string template <typename E> requires std::is_enum_v<E> constexpr std::string enum_to_string(E value) { template for (constexpr auto e : std::meta::enumerators_of(^E)) { if (value == [:e:]) { return std::string(std::meta::name_of(e)); } } return "<unnamed>"; } They have taken us for absolute fools.
minus-square@[email protected]linkfedilinkEnglish1•8 months ago No requires(requires(... No decltype((auto)) No noexcept(noexcept(... To be fair, it’s quite an advancement considering what I was expecting. Just about my only question is why the return is a string and not a `string_view``.
“Simple” enum to string
template <typename E> requires std::is_enum_v<E> constexpr std::string enum_to_string(E value) { template for (constexpr auto e : std::meta::enumerators_of(^E)) { if (value == [:e:]) { return std::string(std::meta::name_of(e)); } } return "<unnamed>"; }
They have taken us for absolute fools.
To be fair, it’s quite an advancement considering what I was expecting.
Just about my only question is why the return is a
string
and not a `string_view``.