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

◆ equal() [1/4]

template<typename Iterator1, typename Iterator2>
bool fl::equal ( Iterator1 first1,
Iterator1 last1,
Iterator2 first2 )

Definition at line 93 of file algorithm.h.

93 {
94 while (first1 != last1) {
95 if (*first1 != *first2) {
96 return false;
97 }
98 ++first1;
99 ++first2;
100 }
101 return true;
102}

Referenced by equal_container(), equal_container(), fl::WeakPtr< T >::operator!=(), and fl::FFT_Args::operator==().

+ Here is the caller graph for this function: