mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
24 lines
790 B
C++
24 lines
790 B
C++
#ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
|
#define SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/numeric/accumulate.hpp>
|
|
|
|
namespace sprout {
|
|
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);
|
|
}
|
|
|
|
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
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|