mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
porting sscrisk/CEL
This commit is contained in:
parent
ad60c8c530
commit
db20f64991
181 changed files with 2531 additions and 607 deletions
25
sprout/numeric/accumulate.hpp
Normal file
25
sprout/numeric/accumulate.hpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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
|
||||
template<class InputIterator, typename T, typename BinaryOperation>
|
||||
SPROUT_CONSTEXPR T accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op) {
|
||||
return first == last ? init
|
||||
: sprout::accumulate(first + 1, last, binary_op(init, *first), binary_op)
|
||||
;
|
||||
}
|
||||
|
||||
template<class InputIterator, typename T>
|
||||
SPROUT_CONSTEXPR T accumulate(InputIterator first, InputIterator last, T init) {
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue