mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
29 lines
842 B
C++
29 lines
842 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/result_of.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::result_of::algorithm<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
|
|
|
|
using sprout::fixed::generate_n;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_GENERATE_N_HPP
|