2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-10-21 11:36:19 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_FIXED_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>
|
2014-04-05 09:31:09 +00:00
|
|
|
#include <sprout/iterator/type_traits/is_iterator_of.hpp>
|
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2013-11-20 13:04:11 +00:00
|
|
|
#include <sprout/algorithm/fixed/results.hpp>
|
2011-10-21 11:36:19 +00:00
|
|
|
#include <sprout/numeric/fixed/adjacent_difference.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fixed {
|
|
|
|
//
|
|
|
|
// adjacent_difference
|
|
|
|
//
|
2014-04-05 09:31:09 +00:00
|
|
|
template<
|
|
|
|
typename InputRange, typename Result,
|
|
|
|
typename sprout::enabler_if<!sprout::is_iterator_outputable<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, Result const& result) {
|
|
|
|
return sprout::fixed::adjacent_difference(sprout::begin(rng), sprout::end(rng), result);
|
2011-10-21 11:36:19 +00:00
|
|
|
}
|
2014-04-05 09:31:09 +00:00
|
|
|
template<
|
|
|
|
typename InputRange, typename Result, typename BinaryOperation,
|
|
|
|
typename sprout::enabler_if<!sprout::is_iterator_outputable<Result>::value>::type = sprout::enabler
|
|
|
|
>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
|
|
|
|
return sprout::fixed::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-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng) {
|
|
|
|
return sprout::fixed::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-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm<Result>::type
|
2013-02-03 16:10:26 +00:00
|
|
|
adjacent_difference(InputRange const& rng, BinaryOperation binary_op) {
|
|
|
|
return sprout::fixed::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 fixed
|
|
|
|
|
|
|
|
using sprout::range::fixed::adjacent_difference;
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIXED_ADJACENT_DIFFERENCE_HPP
|