| 94 | |
| 95 | template <typename Iterator1, typename Iterator2> |
| 96 | bool 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 | |
| 107 | template <typename Iterator1, typename Iterator2, typename BinaryPredicate> |
| 108 | bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2, BinaryPredicate pred) FL_NOEXCEPT { |
no outgoing calls
no test coverage detected