2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP___NUMERIC_PARTIAL_SUM_H
11 #define _LIBCPP___NUMERIC_PARTIAL_SUM_H
14 #include <__iterator/iterator_traits.h>
15 #include <__utility/move.h>
17 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
18 # pragma GCC system_header
21 _LIBCPP_BEGIN_NAMESPACE_STD
23 template <class _InputIterator
, class _OutputIterator
>
24 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
26 partial_sum(_InputIterator __first
, _InputIterator __last
, _OutputIterator __result
)
28 if (__first
!= __last
)
30 typename iterator_traits
<_InputIterator
>::value_type
__t(*__first
);
32 for (++__first
, (void) ++__result
; __first
!= __last
; ++__first
, (void) ++__result
)
34 #if _LIBCPP_STD_VER > 17
35 __t
= _VSTD::move(__t
) + *__first
;
45 template <class _InputIterator
, class _OutputIterator
, class _BinaryOperation
>
46 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17
48 partial_sum(_InputIterator __first
, _InputIterator __last
, _OutputIterator __result
,
49 _BinaryOperation __binary_op
)
51 if (__first
!= __last
)
53 typename iterator_traits
<_InputIterator
>::value_type
__t(*__first
);
55 for (++__first
, (void) ++__result
; __first
!= __last
; ++__first
, (void) ++__result
)
57 #if _LIBCPP_STD_VER > 17
58 __t
= __binary_op(_VSTD::move(__t
), *__first
);
60 __t
= __binary_op(__t
, *__first
);
68 _LIBCPP_END_NAMESPACE_STD
70 #endif // _LIBCPP___NUMERIC_PARTIAL_SUM_H