#ifndef SPROUT_ALGORITHM_INFIT_GENERATE_N_HPP #define SPROUT_ALGORITHM_INFIT_GENERATE_N_HPP #include #include #include #include #include #include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL namespace sprout { namespace infit { namespace detail { template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> generate_n_impl( Container const& cont, Size n, Generator gen, typename sprout::fixed_container_traits::difference_type offset, Inits const&... inits ) { return sprout::sub_copy( sprout::fixed::generate_n(cont, n, gen, inits...), offset, offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(n, sprout::size(cont)) ); } } // namespace detail // // generate_n // template SPROUT_CONSTEXPR inline sprout::sub_array::fixed_container_type> generate_n( Container const& cont, Size n, Generator gen, Inits const&... inits ) { return sprout::infit::detail::generate_n_impl(cont, n, gen, sprout::fixed_begin_offset(cont), inits...); } } // namespace infit } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_INFIT_GENERATE_N_HPP