2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <algorithm>
|
|
|
|
|
2010-08-22 02:08:10 +02:00
|
|
|
// template<InputIterator InIter, OutputIterator<auto, InIter::reference> OutIter>
|
2010-05-11 21:42:16 +02:00
|
|
|
// OutIter
|
|
|
|
// copy(InIter first, InIter last, OutIter result);
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
#include "../../iterators.h"
|
|
|
|
|
|
|
|
template <class InIter, class OutIter>
|
|
|
|
void
|
|
|
|
test()
|
|
|
|
{
|
|
|
|
const unsigned N = 1000;
|
|
|
|
int ia[N];
|
|
|
|
for (unsigned i = 0; i < N; ++i)
|
|
|
|
ia[i] = i;
|
|
|
|
int ib[N] = {0};
|
|
|
|
|
|
|
|
OutIter r = std::copy(InIter(ia), InIter(ia+N), OutIter(ib));
|
|
|
|
assert(base(r) == ib+N);
|
|
|
|
for (unsigned i = 0; i < N; ++i)
|
|
|
|
assert(ia[i] == ib[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test<input_iterator<const int*>, output_iterator<int*> >();
|
|
|
|
test<input_iterator<const int*>, input_iterator<int*> >();
|
|
|
|
test<input_iterator<const int*>, forward_iterator<int*> >();
|
|
|
|
test<input_iterator<const int*>, bidirectional_iterator<int*> >();
|
|
|
|
test<input_iterator<const int*>, random_access_iterator<int*> >();
|
|
|
|
test<input_iterator<const int*>, int*>();
|
|
|
|
|
|
|
|
test<forward_iterator<const int*>, output_iterator<int*> >();
|
|
|
|
test<forward_iterator<const int*>, input_iterator<int*> >();
|
|
|
|
test<forward_iterator<const int*>, forward_iterator<int*> >();
|
|
|
|
test<forward_iterator<const int*>, bidirectional_iterator<int*> >();
|
|
|
|
test<forward_iterator<const int*>, random_access_iterator<int*> >();
|
|
|
|
test<forward_iterator<const int*>, int*>();
|
|
|
|
|
|
|
|
test<bidirectional_iterator<const int*>, output_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<const int*>, input_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<const int*>, forward_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<const int*>, bidirectional_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<const int*>, random_access_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<const int*>, int*>();
|
|
|
|
|
|
|
|
test<random_access_iterator<const int*>, output_iterator<int*> >();
|
|
|
|
test<random_access_iterator<const int*>, input_iterator<int*> >();
|
|
|
|
test<random_access_iterator<const int*>, forward_iterator<int*> >();
|
|
|
|
test<random_access_iterator<const int*>, bidirectional_iterator<int*> >();
|
|
|
|
test<random_access_iterator<const int*>, random_access_iterator<int*> >();
|
|
|
|
test<random_access_iterator<const int*>, int*>();
|
|
|
|
|
|
|
|
test<const int*, output_iterator<int*> >();
|
|
|
|
test<const int*, input_iterator<int*> >();
|
|
|
|
test<const int*, forward_iterator<int*> >();
|
|
|
|
test<const int*, bidirectional_iterator<int*> >();
|
|
|
|
test<const int*, random_access_iterator<int*> >();
|
|
|
|
test<const int*, int*>();
|
|
|
|
}
|