MCPcopy Create free account
hub / github.com/FastLED/FastLED / equal

Function equal

src/fl/stl/algorithm.h:96–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94
95template <typename Iterator1, typename Iterator2>
96bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2) FL_NOEXCEPT {
97 while (first1 != last1) {
98 if (*first1 != *first2) {
99 return false;
100 }
101 ++first1;
102 ++first2;
103 }
104 return true;
105}
106
107template <typename Iterator1, typename Iterator2, typename BinaryPredicate>
108bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2, BinaryPredicate pred) FL_NOEXCEPT {

Callers 5

equal_containerFunction · 0.85
operator==Function · 0.85
operator==Function · 0.85
operator==Method · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected