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

◆ sort() [1/2]

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

Definition at line 574 of file algorithm.h.

574 {
575 // Use explicit template parameter to avoid C++14 auto in lambda
576 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
577 sort(first, last, [](const value_type& a, const value_type& b) { return a < b; });
578}
void sort(Iterator first, Iterator last, Compare comp) FL_NOEXCEPT
Definition algorithm.h:564

References FL_NOEXCEPT, and sort().

+ Here is the call graph for this function: