summaryrefslogtreecommitdiff
path: root/Examples/test-suite/cpp11_std_array.i
blob: 9dc11ce9e02c2725a64bb528cbb2b44b09a02e3d (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
%module cpp11_std_array

#if defined(SWIGPYTHON) || defined(SWIGRUBY) || defined(SWIGJAVA) || defined(SWIGCSHARP) || defined(SWIGGO)

%{
#include <array>
%}

%include <std_array.i>

%template(ArrayInt6) std::array<int, 6>;

%inline %{
std::array<int, 6> arrayOutVal() {
  return { -2, -1, 0, 0, 1, 2 };
}

std::array<int, 6> & arrayOutRef() {
  static std::array<int, 6> a = { -2, -1, 0, 0, 1, 2 };
  return a;
}

const std::array<int, 6> & arrayOutConstRef() {
  static std::array<int, 6> a = { -2, -1, 0, 0, 1, 2 };
  return a;
}

std::array<int, 6> * arrayOutPtr() {
  static std::array<int, 6> a = { -2, -1, 0, 0, 1, 2 };
  return &a;
}

std::array<int, 6> arrayInVal(std::array<int, 6> myarray) {
  std::array<int, 6> a = myarray;
  for (auto& val : a) {
    val *= 10;
  }
  return a;
}

const std::array<int, 6> & arrayInConstRef(const std::array<int, 6> & myarray) {
  static std::array<int, 6> a = myarray;
  for (auto& val : a) {
    val *= 10;
  }
  return a;
}

void arrayInRef(std::array<int, 6> & myarray) {
  for (auto& val : myarray) {
    val *= 10;
  }
}

void arrayInPtr(std::array<int, 6> * myarray) {
  for (auto& val : *myarray) {
    val *= 10;
  }
}
%}

#endif