2011-10-21 11:36:19 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_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/fit/result_of.hpp>
|
|
|
|
#include <sprout/numeric/fit/adjacent_difference.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fit {
|
|
|
|
//
|
|
|
|
// adjacent_difference
|
|
|
|
//
|
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::fit::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, Result const& result) {
|
|
|
|
return sprout::fit::adjacent_difference(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::fit::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
|
|
|
|
return sprout::fit::adjacent_difference(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::fit::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng) {
|
|
|
|
return sprout::fit::adjacent_difference<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::fit::result_of::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, BinaryOperation binary_op) {
|
|
|
|
return sprout::fit::adjacent_difference<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 fit
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_ADJACENT_DIFFERENCE_HPP
|