aboutsummaryrefslogtreecommitdiff
path: root/libcxx/test/libcxx-03/numerics/numarray/class.mask.array/get.pass.cpp
blob: e34c38289222a2df2a566cc226651c0ec231496c (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
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// <valarray>

// template<class T> class mask_array;

// T __get(size_t i);

#include <valarray>
#include <cassert>

#include "test_macros.h"

int main(int, char**) {
  unsigned input[] = {0, 1, 2, 3, 4};
  const unsigned N = sizeof(input) / sizeof(input[0]);

  std::valarray<unsigned> array(input, N);

  {
    std::mask_array<unsigned> result = array[std::valarray<bool>(true, N)];
    for (unsigned i = 0; i < N; ++i)
      assert(result.__get(i) == i);
  }

  {
    std::valarray<bool> mask(false, N);
    mask[1]                          = true;
    mask[3]                          = true;
    std::mask_array<unsigned> result = array[mask];
    assert(result.__get(0) == 1);
    assert(result.__get(1) == 3);
  }

  {
    std::valarray<bool> mask(false, N);
    mask[0]                          = true;
    mask[4]                          = true;
    std::mask_array<unsigned> result = array[mask];
    assert(result.__get(0) == 0);
    assert(result.__get(1) == 4);
  }

  return 0;
}