/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under 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) =============================================================================*/ #ifndef SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP #define SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP #include #include namespace sprout { namespace range { // 26.7.3 Inner product template inline SPROUT_CONSTEXPR T inner_product( InputRange1 const& range1, InputRange2 const& range2, T init, BinaryOperation1 binary_op1, BinaryOperation2 binary_op2 ) { return sprout::inner_product(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), init, binary_op1, binary_op2); } template inline SPROUT_CONSTEXPR T inner_product(InputRange1 const& range1, InputRange2 const& range2, T init) { return sprout::inner_product(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), init); } } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP