2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
2014-01-08 16:48:12 +09:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 18:54:33 +09: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 16:24:13 +09:00
|
|
|
#include <sprout/container/traits.hpp>
|
2013-11-20 22:04:11 +09:00
|
|
|
#include <sprout/algorithm/fixed/results.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/algorithm/fixed/generate.hpp>
|
2013-02-07 23:12:57 +09:00
|
|
|
#include <sprout/pit/pit.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
//
|
|
|
|
// generate_n
|
|
|
|
//
|
2012-09-21 15:43:30 +09:00
|
|
|
template<typename Container, typename Size, typename Generator>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2012-09-27 22:15:29 +09:00
|
|
|
generate_n(Container const& cont, Size n, Generator const& gen) {
|
2012-09-21 15:43:30 +09:00
|
|
|
return sprout::fixed::detail::generate_impl(cont, gen, n);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2013-01-20 08:53:20 +09:00
|
|
|
|
|
|
|
template<typename Container, typename Size, typename Generator>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-01-20 08:53:20 +09: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 22:26:26 +09:00
|
|
|
|
2013-10-17 19:22:40 +09:00
|
|
|
template<
|
|
|
|
typename Container, typename Size, typename Generator,
|
2013-10-26 00:32:36 +09:00
|
|
|
typename sprout::enabler_if<!sprout::is_iterator_outputable<Container>::value>::type = sprout::enabler
|
2013-10-17 19:22:40 +09:00
|
|
|
>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-10-17 19:22:40 +09: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 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Container>::type
|
2013-10-17 19:22:40 +09: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
|