transform_reduce.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  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
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___NUMERIC_TRANSFORM_REDUCE_H
  10. #define _LIBCPP___NUMERIC_TRANSFORM_REDUCE_H
  11. #include <__config>
  12. #include <__functional/operations.h>
  13. #include <__utility/move.h>
  14. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  15. # pragma GCC system_header
  16. #endif
  17. _LIBCPP_BEGIN_NAMESPACE_STD
  18. #if _LIBCPP_STD_VER >= 17
  19. template <class _InputIterator, class _Tp, class _BinaryOp, class _UnaryOp>
  20. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp transform_reduce(_InputIterator __first,
  21. _InputIterator __last, _Tp __init,
  22. _BinaryOp __b, _UnaryOp __u) {
  23. for (; __first != __last; ++__first)
  24. __init = __b(std::move(__init), __u(*__first));
  25. return __init;
  26. }
  27. template <class _InputIterator1, class _InputIterator2, class _Tp, class _BinaryOp1, class _BinaryOp2>
  28. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp transform_reduce(_InputIterator1 __first1,
  29. _InputIterator1 __last1,
  30. _InputIterator2 __first2, _Tp __init,
  31. _BinaryOp1 __b1, _BinaryOp2 __b2) {
  32. for (; __first1 != __last1; ++__first1, (void)++__first2)
  33. __init = __b1(std::move(__init), __b2(*__first1, *__first2));
  34. return __init;
  35. }
  36. template <class _InputIterator1, class _InputIterator2, class _Tp>
  37. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp transform_reduce(_InputIterator1 __first1,
  38. _InputIterator1 __last1,
  39. _InputIterator2 __first2, _Tp __init) {
  40. return _VSTD::transform_reduce(__first1, __last1, __first2, _VSTD::move(__init), _VSTD::plus<>(),
  41. _VSTD::multiplies<>());
  42. }
  43. #endif
  44. _LIBCPP_END_NAMESPACE_STD
  45. #endif // _LIBCPP___NUMERIC_TRANSFORM_REDUCE_H