1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <algorithm>
11 
12 // template<RandomAccessIterator Iter, Callable<auto, Iter::difference_type> Rand>
13 //   requires ShuffleIterator<Iter>
14 //         && Convertible<Rand::result_type, Iter::difference_type>
15 //   void
16 //   random_shuffle(Iter first, Iter last, Rand&& rand);
17 
18 #include <algorithm>
19 #include <cassert>
20 
21 #include "test_macros.h"
22 
23 struct gen
24 {
25     int operator()(int n)
26     {
27         return n-1;
28     }
29 };
30 
31 int main()
32 {
33     int ia[] = {1, 2, 3, 4};
34     int ia1[] = {4, 1, 2, 3};
35     const unsigned sa = sizeof(ia)/sizeof(ia[0]);
36     gen r;
37     std::random_shuffle(ia, ia+sa, r);
38     LIBCPP_ASSERT(std::equal(ia, ia+sa, ia1));
39     assert(std::is_permutation(ia, ia+sa, ia1));
40 }
41