summaryrefslogtreecommitdiff
path: root/libcxx/test/std/algorithms/alg.modifying.operations/alg.transform/pstl.transform.binary.pass.cpp
blob: 1076a1548ee3d46d97b5e30a0f2c6dcc07d729b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//===----------------------------------------------------------------------===//
//
// 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

// <algorithm>

// template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
//          class ForwardIterator, class BinaryOperation>
//   ForwardIterator
//     transform(ExecutionPolicy&& exec,
//               ForwardIterator1 first1, ForwardIterator1 last1,
//               ForwardIterator2 first2, ForwardIterator result,
//               BinaryOperation binary_op);

#include <algorithm>
#include <vector>

#include "test_macros.h"
#include "test_execution_policies.h"
#include "test_iterators.h"

EXECUTION_POLICY_SFINAE_TEST(transform);

static_assert(sfinae_test_transform<int, int*, int*, int*, int*, bool (*)(int)>);
static_assert(!sfinae_test_transform<std::execution::parallel_policy, int*, int*, int*, int*, int (*)(int, int)>);

template <class Iter1, class Iter2, class Iter3>
struct Test {
  template <class Policy>
  void operator()(Policy&& policy) {
    // simple test
    for (const int size : {0, 1, 2, 100, 350}) {
      std::vector<int> a(size);
      std::vector<int> b(size);
      for (int i = 0; i != size; ++i) {
        a[i] = i + 1;
        b[i] = i - 3;
      }

      std::vector<int> out(std::size(a));
      decltype(auto) ret = std::transform(
          policy,
          Iter1(std::data(a)),
          Iter1(std::data(a) + std::size(a)),
          Iter2(std::data(b)),
          Iter3(std::data(out)),
          [](int i, int j) { return i + j + 3; });
      static_assert(std::is_same_v<decltype(ret), Iter3>);
      assert(base(ret) == std::data(out) + std::size(out));
      for (int i = 0; i != size; ++i) {
        assert(out[i] == i * 2 + 1);
      }
    }
  }
};

template <class Iter3>
struct TestIterators2 {
  template <class Iter2>
  void operator()() {
    types::for_each(types::forward_iterator_list<int*>{},
                    TestIteratorWithPolicies<types::partial_instantiation<Test, Iter2, Iter3>::template apply>{});
  }
};

struct TestIterators1 {
  template <class Iter3>
  void operator()() {
    types::for_each(types::forward_iterator_list<int*>{}, TestIterators2<Iter3>{});
  }
};

int main(int, char**) {
  types::for_each(types::forward_iterator_list<int*>{}, TestIterators1{});

  return 0;
}