Sprout/sprout/range/numeric/accumulate.hpp

25 lines
790 B
C++
Raw Normal View History

2012-04-04 08:48:02 +00:00
#ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
#define SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
#include <sprout/config.hpp>
#include <sprout/numeric/accumulate.hpp>
namespace sprout {
2012-10-06 04:53:07 +00:00
namespace range {
// 26.7.2 Accumulate
template<typename Range, typename T, typename BinaryOperation>
inline SPROUT_CONSTEXPR T
accumulate(Range const& range, T init, BinaryOperation binary_op) {
return sprout::accumulate(sprout::begin(range), sprout::end(range), init, binary_op);
}
2012-04-04 08:48:02 +00:00
2012-10-06 04:53:07 +00:00
template<typename Range, typename T>
inline SPROUT_CONSTEXPR T
accumulate(Range const& range, T init) {
return sprout::accumulate(sprout::begin(range), sprout::end(range), init);
}
} // namespace range
2012-04-04 08:48:02 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP