#ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP #define SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP #include #include #include #include namespace sprout { namespace fixed { // // unfold_n // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type unfold_n( Container const& cont, Size n, Generator const& gen, Inits const&... inits ) { return sprout::fixed::detail::unfold_impl(cont, gen, n, inits...); } } // namespace fixed using sprout::fixed::unfold_n; } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP