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

◆ reverse()

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

Definition at line 11 of file algorithm.h.

11 {
12 while ((first != last) && (first != --last)) {
13 swap(*first++, *last);
14 }
15}
void swap(array< T, N > &lhs, array< T, N > &rhs) FL_NOEXCEPT
Definition array.h:209

References FL_NOEXCEPT, and swap().

+ Here is the call graph for this function: