1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
// binary_negate example
#include <iostream>
#include <functional>
#include <algorithm>
using namespace std;
int main () {
equal_to<int> equality;
binary_negate < equal_to<int> > nonequality (equality);
int foo[] = {10,20,30,40,50};
int bar[] = {0,15,30,45,60};
pair<int*,int*> firstmatch,firstmismatch;
firstmismatch=mismatch (foo,foo+5,bar,equality);
firstmatch=mismatch (foo,foo+5,bar,nonequality);
cout << "First mismatch in bar is " << *firstmismatch.second << "\n";
cout << "First match in bar is " << *firstmatch.second << "\n";
return 0;
}
|