2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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>
|
2013-11-20 13:04:11 +00:00
|
|
|
#include <sprout/algorithm/fixed/results.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>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::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>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-01-19 23:53:20 +00:00
|
|
|
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
|
|
|
|
2013-10-17 10:22:40 +00:00
|
|
|
template<
|
|
|
|
typename Container, typename Size, typename Generator,
|
2013-10-25 15:32:36 +00:00
|
|
|
typename sprout::enabler_if<!sprout::is_iterator_outputable<Container>::value>::type = sprout::enabler
|
2013-10-17 10:22:40 +00:00
|
|
|
>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-10-17 10:22:40 +00:00
|
|
|
generate_n(Container const& cont, Size n, Generator const& gen) {
|
|
|
|
return sprout::fixed::generate_n(cont, n, gen);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Container, typename Size, typename Generator>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-10-17 10:22:40 +00:00
|
|
|
generate_n(Size n, Generator const& gen) {
|
|
|
|
return sprout::fixed::generate_n<Container>(n, gen);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
|