1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // Became constexpr in C++20
12 // template <InputIterator Iter, MoveConstructible T>
13 // requires HasPlus<T, Iter::reference>
14 // && HasAssign<T, HasPlus<T, Iter::reference>::result_type>
16 // accumulate(Iter first, Iter last, T init);
21 #include "test_macros.h"
22 #include "test_iterators.h"
24 template <class Iter
, class T
>
25 TEST_CONSTEXPR_CXX20
void
26 test(Iter first
, Iter last
, T init
, T x
)
28 assert(std::accumulate(first
, last
, init
) == x
);
32 TEST_CONSTEXPR_CXX20
void
35 int ia
[] = {1, 2, 3, 4, 5, 6};
36 unsigned sa
= sizeof(ia
) / sizeof(ia
[0]);
37 test(Iter(ia
), Iter(ia
), 0, 0);
38 test(Iter(ia
), Iter(ia
), 10, 10);
39 test(Iter(ia
), Iter(ia
+1), 0, 1);
40 test(Iter(ia
), Iter(ia
+1), 10, 11);
41 test(Iter(ia
), Iter(ia
+2), 0, 3);
42 test(Iter(ia
), Iter(ia
+2), 10, 13);
43 test(Iter(ia
), Iter(ia
+sa
), 0, 21);
44 test(Iter(ia
), Iter(ia
+sa
), 10, 31);
47 TEST_CONSTEXPR_CXX20
bool
50 test
<cpp17_input_iterator
<const int*> >();
51 test
<forward_iterator
<const int*> >();
52 test
<bidirectional_iterator
<const int*> >();
53 test
<random_access_iterator
<const int*> >();
63 static_assert(test());