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

◆ sort_data_partial()

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

Partial sorting implementation.

Definition at line 249 of file StandardSorter.hpp.

250 {
251 auto old_algorithm = m_algorithm;
252 m_algorithm = SortingAlgorithm::PARTIAL;
253 auto result = sort_compute_data_extract(data, this->get_direction(), m_algorithm);
254 m_algorithm = old_algorithm;
255 return result;
256 }
SortingDirection get_direction() const
T sort_compute_data_extract(const T &data, SortingDirection direction, SortingAlgorithm algorithm)
Universal sort function - returns sorted copy.

References MayaFlux::Yantra::sort_compute_data_extract().

+ Here is the call graph for this function: