Sprout/sprout/range/numeric/fixed/adjacent_difference.hpp

44 lines
1.9 KiB
C++
Raw Normal View History

#ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
#define SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/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>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR 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);
}
template<typename Input, typename Result, typename BinaryOperation>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR 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);
}
template<typename Result, typename Input>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
adjacent_difference(Input const& input) {
return sprout::fixed::adjacent_difference<Result>(sprout::begin(input), sprout::end(input));
}
template<typename Result, typename Input, typename BinaryOperation>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
adjacent_difference(Input const& input, BinaryOperation binary_op) {
return sprout::fixed::adjacent_difference<Result>(sprout::begin(input), sprout::end(input), binary_op);
}
} // namespace fixed
using sprout::range::fixed::adjacent_difference;
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP