FastLED 3.9.15
Loading...
Searching...
No Matches

◆ stable_sort() [1/2]

template<typename Iterator>
void fl::stable_sort ( Iterator first,
Iterator last )

Definition at line 519 of file algorithm.h.

519 {
520 // Use explicit template parameter to avoid C++14 auto in lambda
521 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
522 stable_sort(first, last, [](const value_type& a, const value_type& b) { return a < b; });
523}
void stable_sort(Iterator first, Iterator last, Compare comp)
Definition algorithm.h:509

References stable_sort().

+ Here is the call graph for this function: