1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef PYTHONIC_BUILTIN_REDUCE_HPP
#define PYTHONIC_BUILTIN_REDUCE_HPP
#include "pythonic/include/builtins/reduce.hpp"
#include "pythonic/utils/functor.hpp"
#include <algorithm>
#include <numeric>
#include <utility>
PYTHONIC_NS_BEGIN
namespace builtins
{
template <class Iterable, class Operator>
auto reduce(Operator op, Iterable s)
-> decltype(op(std::declval<typename std::iterator_traits<
typename Iterable::iterator>::value_type>(),
std::declval<typename std::iterator_traits<
typename Iterable::iterator>::value_type>()))
{
auto iter = s.begin();
auto r = *iter;
++iter;
if (iter != s.end())
return std::accumulate(iter, s.end(), r, op);
else
return r;
}
template <class Iterable, class Operator, class T>
auto reduce(Operator op, Iterable s, T const &init)
-> decltype(std::accumulate(
s.begin(), s.end(),
static_cast<reduce_helper_t<Iterable, Operator, T>>(init), op))
{
return std::accumulate(
s.begin(), s.end(),
static_cast<reduce_helper_t<Iterable, Operator, T>>(init), op);
}
}
PYTHONIC_NS_END
#endif
|