2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_NUMERIC_ACCUMLATE_HPP
|
|
|
|
#define SPROUT_NUMERIC_ACCUMLATE_HPP
|
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
|
|
|
|
// 26.7.2 Accumulate
|
2012-04-04 08:48:02 +00:00
|
|
|
template<typename InputIterator, typename T, typename BinaryOperation>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR T accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return first == last ? init
|
2012-04-04 08:48:02 +00:00
|
|
|
: sprout::accumulate(sprout::next(first), last, binary_op(init, *first), binary_op)
|
2012-04-01 13:15:09 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2012-04-04 08:48:02 +00:00
|
|
|
template<typename InputIterator, typename T>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR T accumulate(InputIterator first, InputIterator last, T init) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return sprout::accumulate(first, last, init, NS_SSCRISK_CEL_OR_SPROUT::plus<typename std::iterator_traits<InputIterator>::value_type>());
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_NUMERIC_ACCUMLATE_HPP
|