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)
|
|
|
|
=============================================================================*/
|
2011-10-21 11:36:19 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_FIXED_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/fixed/result_of.hpp>
|
|
|
|
#include <sprout/numeric/fixed/partial_sum.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fixed {
|
|
|
|
//
|
|
|
|
// partial_sum
|
|
|
|
//
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename InputRange, typename Result>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
partial_sum(InputRange const& rng, Result const& result) {
|
|
|
|
return sprout::fixed::partial_sum(sprout::begin(rng), sprout::end(rng), result);
|
2011-10-21 11:36:19 +00:00
|
|
|
}
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename InputRange, typename Result, typename BinaryOperation>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
partial_sum(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
|
|
|
|
return sprout::fixed::partial_sum(sprout::begin(rng), sprout::end(rng), result, binary_op);
|
2011-10-21 11:36:19 +00:00
|
|
|
}
|
2013-02-01 11:21:01 +00:00
|
|
|
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename Result, typename InputRange>
|
2013-02-01 11:21:01 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
partial_sum(InputRange const& rng) {
|
|
|
|
return sprout::fixed::partial_sum<Result>(sprout::begin(rng), sprout::end(rng));
|
2013-02-01 11:21:01 +00:00
|
|
|
}
|
2013-02-03 16:10:26 +00:00
|
|
|
template<typename Result, typename InputRange, typename BinaryOperation>
|
2013-02-01 11:21:01 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
partial_sum(InputRange const& rng, BinaryOperation binary_op) {
|
|
|
|
return sprout::fixed::partial_sum<Result>(sprout::begin(rng), sprout::end(rng), binary_op);
|
2013-02-01 11:21:01 +00:00
|
|
|
}
|
2011-10-21 11:36:19 +00:00
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
using sprout::range::fixed::partial_sum;
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
|