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

◆ equal_container() [1/2]

template<typename Container1, typename Container2>
bool fl::equal_container ( const Container1 & c1,
const Container2 & c2 )

Definition at line 183 of file algorithm.h.

183 {
184 fl::size size1 = c1.size();
185 fl::size size2 = c2.size();
186 if (size1 != size2) {
187 return false;
188 }
189 return equal(c1.begin(), c1.end(), c2.begin(), c2.end());
190}
bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2) FL_NOEXCEPT
Definition algorithm.h:96

References equal(), and FL_NOEXCEPT.

+ Here is the call graph for this function: