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

◆ enum_to_string()

template<typename EnumType >
constexpr std::string_view MayaFlux::Reflect::enum_to_string ( EnumType  value)
constexprnoexcept

Universal enum to string converter using magic_enum (original case)

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

Definition at line 57 of file EnumReflect.hpp.

58{
59 return magic_enum::enum_name(value);
60}

Referenced by MayaFlux::Nodes::Network::WaveguideNetwork::get_metadata(), MayaFlux::Kakshya::EigenInsertion::insert_matrix(), MayaFlux::Kakshya::modality_to_string(), MayaFlux::Nodes::Network::NodeNetwork::output_mode_to_string(), MayaFlux::Kriya::BufferPipeline::process_operation(), MayaFlux::IO::to_string(), MayaFlux::Nodes::Network::NodeNetwork::topology_to_string(), MayaFlux::Kakshya::EigenInsertion::validate_matrix_dimensions(), MayaFlux::Journal::Archivist::Impl::write_to_console(), and MayaFlux::Journal::Archivist::Impl::write_to_console().

+ Here is the caller graph for this function: