Sprout/sprout/algorithm/fixed/unfold_n.hpp

39 lines
1.5 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP
#define SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/algorithm/fixed/unfold.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/pit/pit.hpp>
namespace sprout {
namespace fixed {
//
// unfold_n
//
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, 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;
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_UNFOLD_N_HPP