MayaFlux 0.1.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 354 of file StandardSorter.hpp.

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