2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 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)
|
|
|
|
=============================================================================*/
|
2012-04-04 08:48:02 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/numeric/accumulate.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
2012-10-06 04:53:07 +00:00
|
|
|
namespace range {
|
|
|
|
// 26.7.2 Accumulate
|
2013-08-07 13:13:03 +00:00
|
|
|
template<typename InputRange, typename T, typename BinaryOperation>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR T
|
2013-08-07 13:13:03 +00:00
|
|
|
accumulate(InputRange const& range, T init, BinaryOperation binary_op) {
|
2012-10-06 04:53:07 +00:00
|
|
|
return sprout::accumulate(sprout::begin(range), sprout::end(range), init, binary_op);
|
|
|
|
}
|
2012-04-04 08:48:02 +00:00
|
|
|
|
2013-08-07 13:13:03 +00:00
|
|
|
template<typename InputRange, typename T>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR T
|
2013-08-07 13:13:03 +00:00
|
|
|
accumulate(InputRange const& range, T init) {
|
2012-10-06 04:53:07 +00:00
|
|
|
return sprout::accumulate(sprout::begin(range), sprout::end(range), init);
|
|
|
|
}
|
|
|
|
} // namespace range
|
2012-04-04 08:48:02 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_ACCUMLATE_HPP
|