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

◆ reverse()

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

Definition at line 10 of file algorithm.h.

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

References swap().

+ Here is the call graph for this function: