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

◆ equal_container() [2/2]

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

Definition at line 151 of file algorithm.h.

151 {
152 size_t size1 = c1.size();
153 size_t size2 = c2.size();
154 if (size1 != size2) {
155 return false;
156 }
157 return equal(c1.begin(), c1.end(), c2.begin(), c2.end(), pred);
158}
bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2)
Definition algorithm.h:93

References equal().

+ Here is the call graph for this function: