1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/algorithm/fixed/generate_n.hpp
bolero-MURAKAMI b3bb8121e8 最初
2011-09-01 02:48:32 +00:00

26 lines
767 B
C++

#ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
#define SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
#include <sprout/config.hpp>
#include <sprout/fixed_container/traits.hpp>
#include <sprout/algorithm/fixed/generate.hpp>
namespace sprout {
namespace fixed {
//
// generate_n
//
template<typename Container, typename Size, typename Generator, typename... Inits>
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::fixed_container_type generate_n(
Container const& cont,
Size n,
Generator gen,
Inits const&... inits
)
{
return sprout::fixed::detail::generate_impl(cont, gen, n, inits...);
}
} // namespace fixed
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP