mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-28 07:12:18 +00:00
39 lines
879 B
C++
39 lines
879 B
C++
|
// STLport regression testsuite component.
|
||
|
// To compile as a separate example, please #define MAIN.
|
||
|
|
||
|
#include <algorithm>
|
||
|
#include <vector>
|
||
|
#include <iostream>
|
||
|
#include <iterator>
|
||
|
#include <functional>
|
||
|
|
||
|
#ifdef MAIN
|
||
|
#define repcpif1_test main
|
||
|
#endif
|
||
|
static bool odd(int a_)
|
||
|
{
|
||
|
return a_ % 2;
|
||
|
}
|
||
|
|
||
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||
|
using namespace std;
|
||
|
#endif
|
||
|
int repcpif1_test(int, char**)
|
||
|
{
|
||
|
cout<<"Results of repcpif1_test:"<<endl;
|
||
|
|
||
|
vector <int> v1(10);
|
||
|
for(int i = 0; i < v1.size(); i++)
|
||
|
v1[i] = i % 5;
|
||
|
ostream_iterator <int> iter(cout, " ");
|
||
|
copy(v1.begin(), v1.end(), iter);
|
||
|
cout << endl;
|
||
|
vector <int> v2(v1.size());
|
||
|
replace_copy_if(v1.begin(), v1.end(), v2.begin(), odd, 42);
|
||
|
copy(v1.begin(), v1.end(), iter);
|
||
|
cout << endl;
|
||
|
copy(v2.begin(), v2.end(), iter);
|
||
|
cout << endl;
|
||
|
return 0;
|
||
|
}
|