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

◆ sort_small() [1/2]

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

Definition at line 620 of file algorithm.h.

620 {
621 typedef typename fl::remove_reference<decltype(*first)>::type value_type;
622 sort_small(first, last,
623 [](const value_type& a, const value_type& b) { return a < b; });
624}
void sort_small(Iterator first, Iterator last, Compare comp) FL_NOEXCEPT
Definition algorithm.h:612

References FL_NOEXCEPT, and sort_small().

+ Here is the call graph for this function: