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

◆ sort() [1/2]

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

Definition at line 501 of file algorithm.h.

501 {
502 // Use explicit template parameter to avoid C++14 auto in lambda
503 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
504 sort(first, last, [](const value_type& a, const value_type& b) { return a < b; });
505}
void sort(Iterator first, Iterator last, Compare comp)
Definition algorithm.h:491

References sort().

+ Here is the call graph for this function: