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 592 of file algorithm.h.

592 {
593 // Use explicit template parameter to avoid C++14 auto in lambda
594 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
595 stable_sort(first, last, [](const value_type& a, const value_type& b) { return a < b; });
596}
void stable_sort(Iterator first, Iterator last, Compare comp) FL_NOEXCEPT
Definition algorithm.h:582

References FL_NOEXCEPT, and stable_sort().

+ Here is the call graph for this function: