mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
porting cel/range/algoritm.hpp
This commit is contained in:
parent
cf593ffeff
commit
ba6482d1ec
51 changed files with 1908 additions and 116 deletions
20
sprout/range/numeric/accumulate.hpp
Normal file
20
sprout/range/numeric/accumulate.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/numeric/accumulate.hpp>
|
||||
|
||||
namespace sprout {
|
||||
// 26.7.2 Accumulate
|
||||
template<typename Range, typename T, typename BinaryOperation>
|
||||
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>
|
||||
SPROUT_CONSTEXPR T accumulate(Range const& range, T init) {
|
||||
return sprout::accumulate(sprout::begin(range), sprout::end(range), init);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue