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

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

References FL_NOEXCEPT.

Referenced by fl::line_xy< T >::distance_to_line_with_point(), equal_container(), equal_container(), FL_DISABLE_WARNING(), fl::audio::fft::Args::operator==(), operator==(), operator==(), and fl::set< T, fl::allocator_inlined_slab< T, N > >::operator==().

+ Here is the caller graph for this function: