Sprout/sprout/range/numeric/fit/partial_sum.hpp

49 lines
2.1 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
#define SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/algorithm/fit/results.hpp>
#include <sprout/numeric/fit/partial_sum.hpp>
namespace sprout {
namespace range {
namespace fit {
//
// partial_sum
//
2013-02-03 16:10:26 +00:00
template<typename InputRange, typename Result>
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
partial_sum(InputRange const& rng, Result const& result) {
return sprout::fit::partial_sum(sprout::begin(rng), sprout::end(rng), result);
}
2013-02-03 16:10:26 +00:00
template<typename InputRange, typename Result, typename BinaryOperation>
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
partial_sum(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
return sprout::fit::partial_sum(sprout::begin(rng), sprout::end(rng), result, binary_op);
}
2013-02-03 16:10:26 +00:00
template<typename Result, typename InputRange>
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
partial_sum(InputRange const& rng) {
return sprout::fit::partial_sum<Result>(sprout::begin(rng), sprout::end(rng));
}
2013-02-03 16:10:26 +00:00
template<typename Result, typename InputRange, typename BinaryOperation>
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
partial_sum(InputRange const& rng, BinaryOperation binary_op) {
return sprout::fit::partial_sum<Result>(sprout::begin(rng), sprout::end(rng), binary_op);
}
} // namespace fit
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP