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