MayaFlux 0.2.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 44 of file EnumUtils.hpp.

45{
46 auto name = magic_enum::enum_name(value);
47 return to_lowercase(name);
48}
std::string to_lowercase(std::string_view str)
Convert string to lowercase.
Definition EnumUtils.hpp:16

References to_lowercase().

Referenced by MayaFlux::IO::to_lowercase_string().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: