mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
range/numeric.hpp 追加
algorithm/* fix
This commit is contained in:
parent
510a265ea5
commit
42d73cc4d5
18 changed files with 407 additions and 131 deletions
40
sprout/range/numeric/fit/partial_sum.hpp
Normal file
40
sprout/range/numeric/fit/partial_sum.hpp
Normal file
|
@ -0,0 +1,40 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#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>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type partial_sum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fit::partial_sum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
//
|
||||
// partial_sum
|
||||
//
|
||||
template<typename Input, typename Result, typename BinaryOperation>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type partial_sum(
|
||||
Input const& input,
|
||||
Result const& result,
|
||||
BinaryOperation binary_op
|
||||
)
|
||||
{
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue