mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +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
8
sprout/range/numeric.hpp
Normal file
8
sprout/range/numeric.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/fixed.hpp>
|
||||
#include <sprout/range/numeric/fit.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_HPP
|
8
sprout/range/numeric/adjacent_difference.hpp
Normal file
8
sprout/range/numeric/adjacent_difference.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_ADJACENT_DIFFERENCE_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_ADJACENT_DIFFERENCE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/fixed/adjacent_difference.hpp>
|
||||
#include <sprout/range/numeric/fit/adjacent_difference.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_ADJACENT_DIFFERENCE_HPP
|
8
sprout/range/numeric/fit.hpp
Normal file
8
sprout/range/numeric/fit.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIT_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIT_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/fit/partial_sum.hpp>
|
||||
#include <sprout/range/numeric/fit/adjacent_difference.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_HPP
|
40
sprout/range/numeric/fit/adjacent_difference.hpp
Normal file
40
sprout/range/numeric/fit/adjacent_difference.hpp
Normal file
|
@ -0,0 +1,40 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_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/adjacent_difference.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fit {
|
||||
//
|
||||
// adjacent_difference
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type adjacent_difference(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fit::adjacent_difference(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
//
|
||||
// adjacent_difference
|
||||
//
|
||||
template<typename Input, typename Result, typename BinaryOperation>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type adjacent_difference(
|
||||
Input const& input,
|
||||
Result const& result,
|
||||
BinaryOperation binary_op
|
||||
)
|
||||
{
|
||||
return sprout::fit::adjacent_difference(sprout::begin(input), sprout::end(input), result, binary_op);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP
|
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
|
8
sprout/range/numeric/fixed.hpp
Normal file
8
sprout/range/numeric/fixed.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIXED_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIXED_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/fixed/partial_sum.hpp>
|
||||
#include <sprout/range/numeric/fixed/adjacent_difference.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_HPP
|
42
sprout/range/numeric/fixed/adjacent_difference.hpp
Normal file
42
sprout/range/numeric/fixed/adjacent_difference.hpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_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/adjacent_difference.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fixed {
|
||||
//
|
||||
// adjacent_difference
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type adjacent_difference(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fixed::adjacent_difference(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
//
|
||||
// adjacent_difference
|
||||
//
|
||||
template<typename Input, typename Result, typename BinaryOperation>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type adjacent_difference(
|
||||
Input const& input,
|
||||
Result const& result,
|
||||
BinaryOperation binary_op
|
||||
)
|
||||
{
|
||||
return sprout::fixed::adjacent_difference(sprout::begin(input), sprout::end(input), result, binary_op);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::adjacent_difference;
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
|
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
|
8
sprout/range/numeric/partial_sum.hpp
Normal file
8
sprout/range/numeric/partial_sum.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_PARTIAL_SUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_PARTIAL_SUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/fixed/partial_sum.hpp>
|
||||
#include <sprout/range/numeric/fit/partial_sum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_PARTIAL_SUM_HPP
|
Loading…
Add table
Add a link
Reference in a new issue