]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/algorithm/cxx17/transform_reduce.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / algorithm / cxx17 / transform_reduce.hpp
CommitLineData
b32b8144
FG
1/*
2 Copyright (c) Marshall Clow 2017.
3
4 Distributed under the Boost Software License, Version 1.0. (See accompanying
92f5a8d4 5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
b32b8144
FG
6*/
7
8/// \file transform_reduce.hpp
9/// \brief Combine the (transformed) elements of a sequence (or two) into a single value.
10/// \author Marshall Clow
11
12#ifndef BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
13#define BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP
14
15#include <functional> // for std::plus
16#include <iterator> // for std::iterator_traits
17
92f5a8d4 18#include <boost/config.hpp>
b32b8144
FG
19#include <boost/range/begin.hpp>
20#include <boost/range/end.hpp>
21#include <boost/range/value_type.hpp>
22
23namespace boost { namespace algorithm {
24
25template<class InputIterator1, class InputIterator2, class T,
26 class BinaryOperation1, class BinaryOperation2>
27T transform_reduce(InputIterator1 first1, InputIterator1 last1,
28 InputIterator2 first2, T init,
29 BinaryOperation1 bOp1, BinaryOperation2 bOp2)
30{
31 for (; first1 != last1; ++first1, (void) ++first2)
32 init = bOp1(init, bOp2(*first1, *first2));
33 return init;
34}
35
36template<class InputIterator, class T,
37 class BinaryOperation, class UnaryOperation>
38T transform_reduce(InputIterator first, InputIterator last,
39 T init, BinaryOperation bOp, UnaryOperation uOp)
40{
41 for (; first != last; ++first)
42 init = bOp(init, uOp(*first));
43 return init;
44}
45
46template<class InputIterator1, class InputIterator2, class T>
47T transform_reduce(InputIterator1 first1, InputIterator1 last1,
48 InputIterator2 first2, T init)
49{
92f5a8d4 50 return boost::algorithm::transform_reduce(first1, last1, first2, init,
b32b8144
FG
51 std::plus<T>(), std::multiplies<T>());
52}
53
54}} // namespace boost and algorithm
55
56#endif // BOOST_ALGORITHM_TRANSFORM_REDUCE_HPP