mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix reverse_iterator
support STL container: some algorithms
This commit is contained in:
parent
a9cd556f8e
commit
9a593cbb81
30 changed files with 634 additions and 78 deletions
|
@ -5,6 +5,7 @@
|
|||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/algorithm/fixed/result_of.hpp>
|
||||
#include <sprout/algorithm/fixed/unfold.hpp>
|
||||
#include <sprout/pit.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace fixed {
|
||||
|
@ -16,6 +17,12 @@ namespace sprout {
|
|||
unfold_n(Container const& cont, Size n, Generator const& gen, Init const& init) {
|
||||
return sprout::fixed::detail::unfold_impl(cont, gen, init, n);
|
||||
}
|
||||
|
||||
template<typename Container, typename Size,typename Generator, typename Init>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
||||
unfold_n(Size n, Generator const& gen, Init const& init) {
|
||||
return sprout::fixed::unfold_n(sprout::pit<Container>(), n, gen, init);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::fixed::unfold_n;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue