/// \file // Range v3 library // // Copyright Eric Niebler 2013-present // // Use, modification and distribution is subject to the // Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_NUMERIC_ACCUMULATE_HPP #define RANGES_V3_NUMERIC_ACCUMULATE_HPP #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-numerics /// @{ struct accumulate_fn { template auto operator()(I first, S last, T init, Op op = Op{}, P proj = P{}) const -> CPP_ret(T)( // requires sentinel_for && input_iterator && indirectly_binary_invocable_> && assignable_from>>) { for(; first != last; ++first) init = invoke(op, init, invoke(proj, *first)); return init; } template auto operator()(Rng && rng, T init, Op op = Op{}, P proj = P{}) const -> CPP_ret(T)( // requires input_range && indirectly_binary_invocable_, P>> && assignable_from< T &, indirect_result_t, P>>>) { return (*this)( begin(rng), end(rng), std::move(init), std::move(op), std::move(proj)); } }; RANGES_INLINE_VARIABLE(accumulate_fn, accumulate) /// @} } // namespace ranges #endif