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

◆ SortingDirection

enum class MayaFlux::Yantra::SortingDirection : uint8_t
strong

Basic sort direction for simple comparisons.

Enumerator
ASCENDING 

Smallest to largest.

DESCENDING 

Largest to smallest.

CUSTOM 

Use custom comparator function.

BIDIRECTIONAL 

Sort with both directions (for special algorithms)

Definition at line 82 of file UniversalSorter.hpp.

82 : uint8_t {
83 ASCENDING, ///< Smallest to largest
84 DESCENDING, ///< Largest to smallest
85 CUSTOM, ///< Use custom comparator function
86 BIDIRECTIONAL ///< Sort with both directions (for special algorithms)
87};
@ ASCENDING
Smallest to largest.
@ DESCENDING
Largest to smallest.