mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-27 23:02:20 +00:00
f44f16d59a
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
38 lines
879 B
C++
38 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;
|
|
}
|