//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14 // UNSUPPORTED: libcpp-has-no-incomplete-pstl // // template // T transform_reduce(ExecutionPolicy&& exec, // ForwardIterator first, ForwardIterator last, // T init, BinaryOperation binary_op, UnaryOperation unary_op); #include #include #include #include "MoveOnly.h" #include "test_execution_policies.h" #include "test_iterators.h" #include "test_macros.h" template struct Test { template void operator()(Policy&& policy) { for (const auto& pair : {std::pair{0, 34}, {1, 35}, {2, 37}, {100, 5084}, {350, 61459}}) { auto [size, expected] = pair; std::vector a(size); for (int i = 0; i != size; ++i) a[i] = i; decltype(auto) ret = std::transform_reduce( policy, Iter1(std::data(a)), Iter1(std::data(a) + std::size(a)), ValueT(34), [check = std::string("Banane")](ValueT i, ValueT j) { assert(check == "Banane"); // ensure that no double-moves happen return i + j; }, [check = std::string("Banane")](ValueT i) { assert(check == "Banane"); // ensure that no double-moves happen return i + 1; }); static_assert(std::is_same_v); assert(ret == expected); } } }; int main(int, char**) { types::for_each(types::forward_iterator_list{}, types::apply_type_identity{[](auto v) { using Iter2 = typename decltype(v)::type; types::for_each( types::type_list{}, TestIteratorWithPolicies::template apply>{}); }}); return 0; }