mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
rename unfold -> recurrence, add-new unfold
This commit is contained in:
parent
a9308ae3ee
commit
b1b7a9fefc
19 changed files with 585 additions and 174 deletions
|
@ -11,15 +11,15 @@ namespace sprout {
|
|||
//
|
||||
// unfold_n
|
||||
//
|
||||
template<typename Container, typename Size, typename Generator, typename... Inits>
|
||||
template<typename Container, typename Size, typename Generator, typename Init>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type unfold_n(
|
||||
Container const& cont,
|
||||
Size n,
|
||||
Generator const& gen,
|
||||
Inits const&... inits
|
||||
Init const& init
|
||||
)
|
||||
{
|
||||
return sprout::fixed::detail::unfold_impl(cont, gen, n, inits...);
|
||||
return sprout::fixed::detail::unfold_impl(cont, gen, init, n);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue