MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ enum_to_lowercase_string()

template<typename EnumType >
std::string MayaFlux::Utils::enum_to_lowercase_string ( EnumType  value)
noexcept

Universal enum to lowercase string converter using magic_enum.

Template Parameters
EnumTypeAny enum type
Parameters
valueEnum value to convert
Returns
Lowercase string representation of the enum

Definition at line 38 of file EnumUtils.hpp.

39{
40 auto name = magic_enum::enum_name(value);
41 return to_lowercase(name);
42}
std::string to_lowercase(std::string_view str)
Convert string to lowercase.
Definition EnumUtils.hpp:10

References to_lowercase().

+ Here is the call graph for this function: