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>
|
|
|
|
|
|
|
|
// template<class Iter, IntegralLike Size, Callable Generator>
|
2010-08-22 02:08:10 +02:00
|
|
|
// requires OutputIterator<Iter, Generator::result_type>
|
|
|
|
// && CopyConstructible<Generator>
|
2010-05-11 21:42:16 +02:00
|
|
|
// void
|
|
|
|
// generate_n(Iter first, Size n, Generator gen);
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
#include "../../iterators.h"
|
|
|
|
|
|
|
|
struct gen_test
|
|
|
|
{
|
|
|
|
int operator()() const {return 2;}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Iter>
|
|
|
|
void
|
|
|
|
test()
|
|
|
|
{
|
|
|
|
const unsigned n = 4;
|
|
|
|
int ia[n] = {0};
|
|
|
|
assert(std::generate_n(Iter(ia), n, gen_test()) == Iter(ia+n));
|
|
|
|
assert(ia[0] == 2);
|
|
|
|
assert(ia[1] == 2);
|
|
|
|
assert(ia[2] == 2);
|
|
|
|
assert(ia[3] == 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test<forward_iterator<int*> >();
|
|
|
|
test<bidirectional_iterator<int*> >();
|
|
|
|
test<random_access_iterator<int*> >();
|
|
|
|
test<int*>();
|
|
|
|
}
|