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 95 of file algorithm.h.

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

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

+ Here is the caller graph for this function: