mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +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
42
sprout/range/numeric/fixed/partial_sum.hpp
Normal file
42
sprout/range/numeric/fixed/partial_sum.hpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#include <sprout/algorithm/fixed/result_of.hpp>
|
||||
#include <sprout/numeric/fixed/partial_sum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fixed {
|
||||
//
|
||||
// partial_sum
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type partial_sum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fixed::partial_sum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
//
|
||||
// partial_sum
|
||||
//
|
||||
template<typename Input, typename Result, typename BinaryOperation>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type partial_sum(
|
||||
Input const& input,
|
||||
Result const& result,
|
||||
BinaryOperation binary_op
|
||||
)
|
||||
{
|
||||
return sprout::fixed::partial_sum(sprout::begin(input), sprout::end(input), result, binary_op);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::partial_sum;
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_PARTIAL_SUM_HPP
|
Loading…
Add table
Add a link
Reference in a new issue