2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/algorithm/fixed/generate.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
//
|
|
|
|
// generate_n
|
|
|
|
//
|
2012-09-21 06:43:30 +00:00
|
|
|
template<typename Container, typename Size, typename Generator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
2012-09-27 13:15:29 +00:00
|
|
|
generate_n(Container const& cont, Size n, Generator const& gen) {
|
2012-09-21 06:43:30 +00:00
|
|
|
return sprout::fixed::detail::generate_impl(cont, gen, n);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2013-01-19 23:53:20 +00:00
|
|
|
|
|
|
|
template<typename Container, typename Size, typename Generator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
generate_n(Size n, Generator const& gen) {
|
|
|
|
return sprout::fixed::generate_n(sprout::pit<Container>(), n, gen);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::generate_n;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
|