2011-10-21 11:36:19 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-10-21 11:36:19 +00:00
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
|
|
#include <sprout/numeric/fit/partial_sum.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fit {
|
|
|
|
//
|
|
|
|
// partial_sum
|
|
|
|
//
|
|
|
|
template<typename Input, typename Result>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
|
|
|
partial_sum(Input const& input, Result const& result) {
|
2011-10-21 11:36:19 +00:00
|
|
|
return sprout::fit::partial_sum(sprout::begin(input), sprout::end(input), result);
|
|
|
|
}
|
|
|
|
template<typename Input, typename Result, typename BinaryOperation>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
|
|
|
partial_sum(Input const& input, Result const& result, BinaryOperation binary_op) {
|
2011-10-21 11:36:19 +00:00
|
|
|
return sprout::fit::partial_sum(sprout::begin(input), sprout::end(input), result, binary_op);
|
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|