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

◆ validate_input_type()

template<ComputeData InputType = Kakshya::DataVariant, ComputeData OutputType = InputType>
bool MayaFlux::Yantra::StandardSorter< InputType, OutputType >::validate_input_type ( const input_type data) const
inlineprivate

Validate input type for sorting.

Definition at line 353 of file StandardSorter.hpp.

354 {
355 if constexpr (RequiresContainer<InputType>) {
356 return data.has_container();
357 }
358 return true;
359 }