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

◆ get_parameter()

template<ComputeData InputType = std::vector<Kakshya::DataVariant>, ComputeData OutputType = InputType>
std::any MayaFlux::Yantra::UniversalExtractor< InputType, OutputType >::get_parameter ( const std::string &  name) const
inlineoverridevirtual

Retrieves a parameter's current value.

Parameters
nameParameter identifier
Returns
Current parameter value as std::any

Implements MayaFlux::Yantra::ComputeOperation< InputType, OutputType >.

Definition at line 126 of file UniversalExtractor.hpp.

127 {
128 if (name == "scope") {
129 return m_scope;
130 }
131 return get_extraction_parameter(name);
132 }
virtual std::any get_extraction_parameter(const std::string &name) const