|
16 | 16 |
|
17 | 17 | from ._types import array
|
18 | 18 |
|
19 |
| -def __abs__(x: array): |
| 19 | +def __abs__(x: array) -> array: |
20 | 20 | """
|
21 | 21 | Note: __abs__ is a method of the array object.
|
22 | 22 | """
|
23 | 23 | pass
|
24 | 24 |
|
25 |
| -def __add__(x1: array, x2: array): |
| 25 | +def __add__(x1: array, x2: array) -> array: |
26 | 26 | """
|
27 | 27 | Note: __add__ is a method of the array object.
|
28 | 28 | """
|
29 | 29 | pass
|
30 | 30 |
|
31 |
| -def __and__(x1: array, x2: array): |
| 31 | +def __and__(x1: array, x2: array) -> array: |
32 | 32 | """
|
33 | 33 | Note: __and__ is a method of the array object.
|
34 | 34 | """
|
35 | 35 | pass
|
36 | 36 |
|
37 |
| -def __eq__(x1: array, x2: array): |
| 37 | +def __eq__(x1: array, x2: array) -> array: |
38 | 38 | """
|
39 | 39 | Note: __eq__ is a method of the array object.
|
40 | 40 | """
|
41 | 41 | pass
|
42 | 42 |
|
43 |
| -def __floordiv__(x1: array, x2: array): |
| 43 | +def __floordiv__(x1: array, x2: array) -> array: |
44 | 44 | """
|
45 | 45 | Note: __floordiv__ is a method of the array object.
|
46 | 46 | """
|
47 | 47 | pass
|
48 | 48 |
|
49 |
| -def __ge__(x1: array, x2: array): |
| 49 | +def __ge__(x1: array, x2: array) -> array: |
50 | 50 | """
|
51 | 51 | Note: __ge__ is a method of the array object.
|
52 | 52 | """
|
53 | 53 | pass
|
54 | 54 |
|
55 |
| -def __ge__(x1: array, x2: array): |
| 55 | +def __getitem__(x, key): |
56 | 56 | """
|
57 | 57 | Note: __getitem__ is a method of the array object.
|
58 | 58 | """
|
59 | 59 | pass
|
60 | 60 |
|
61 |
| -def __gt__(x1: array, x2: array): |
| 61 | +def __gt__(x1: array, x2: array) -> array: |
62 | 62 | """
|
63 | 63 | Note: __gt__ is a method of the array object.
|
64 | 64 | """
|
65 | 65 | pass
|
66 | 66 |
|
67 |
| -def __invert__(x: array): |
| 67 | +def __invert__(x: array) -> array: |
68 | 68 | """
|
69 | 69 | Note: __invert__ is a method of the array object.
|
70 | 70 | """
|
71 | 71 | pass
|
72 | 72 |
|
73 |
| -def __le__(x1: array, x2: array): |
| 73 | +def __le__(x1: array, x2: array) -> array: |
74 | 74 | """
|
75 | 75 | Note: __le__ is a method of the array object.
|
76 | 76 | """
|
77 | 77 | pass
|
78 | 78 |
|
79 |
| -def __le__(x1: array, x2: array): |
| 79 | +def __len__(x): |
80 | 80 | """
|
81 | 81 | Note: __len__ is a method of the array object.
|
82 | 82 | """
|
83 | 83 | pass
|
84 | 84 |
|
85 |
| -def __lshift__(x1: array, x2: array): |
| 85 | +def __lshift__(x1: array, x2: array) -> array: |
86 | 86 | """
|
87 | 87 | Note: __lshift__ is a method of the array object.
|
88 | 88 | """
|
89 | 89 | pass
|
90 | 90 |
|
91 |
| -def __lt__(x1: array, x2: array): |
| 91 | +def __lt__(x1: array, x2: array) -> array: |
92 | 92 | """
|
93 | 93 | Note: __lt__ is a method of the array object.
|
94 | 94 | """
|
95 | 95 | pass
|
96 | 96 |
|
97 |
| -def __matmul__(x1: array, x2: array): |
| 97 | +def __matmul__(x1: array, x2: array) -> array: |
98 | 98 | """
|
99 | 99 | Note: __matmul__ is a method of the array object.
|
100 | 100 | """
|
101 | 101 | pass
|
102 | 102 |
|
103 |
| -def __mod__(x1: array, x2: array): |
| 103 | +def __mod__(x1: array, x2: array) -> array: |
104 | 104 | """
|
105 | 105 | Note: __mod__ is a method of the array object.
|
106 | 106 | """
|
107 | 107 | pass
|
108 | 108 |
|
109 |
| -def __mul__(x1: array, x2: array): |
| 109 | +def __mul__(x1: array, x2: array) -> array: |
110 | 110 | """
|
111 | 111 | Note: __mul__ is a method of the array object.
|
112 | 112 | """
|
113 | 113 | pass
|
114 | 114 |
|
115 |
| -def __ne__(x1: array, x2: array): |
| 115 | +def __ne__(x1: array, x2: array) -> array: |
116 | 116 | """
|
117 | 117 | Note: __ne__ is a method of the array object.
|
118 | 118 | """
|
119 | 119 | pass
|
120 | 120 |
|
121 |
| -def __neg__(x: array): |
| 121 | +def __neg__(x: array) -> array: |
122 | 122 | """
|
123 | 123 | Note: __neg__ is a method of the array object.
|
124 | 124 | """
|
125 | 125 | pass
|
126 | 126 |
|
127 |
| -def __or__(x1: array, x2: array): |
| 127 | +def __or__(x1: array, x2: array) -> array: |
128 | 128 | """
|
129 | 129 | Note: __or__ is a method of the array object.
|
130 | 130 | """
|
131 | 131 | pass
|
132 | 132 |
|
133 |
| -def __pos__(x: array): |
| 133 | +def __pos__(x: array) -> array: |
134 | 134 | """
|
135 | 135 | Note: __pos__ is a method of the array object.
|
136 | 136 | """
|
137 | 137 | pass
|
138 | 138 |
|
139 |
| -def __pow__(x1: array, x2: array): |
| 139 | +def __pow__(x1: array, x2: array) -> array: |
140 | 140 | """
|
141 | 141 | Note: __pow__ is a method of the array object.
|
142 | 142 | """
|
143 | 143 | pass
|
144 | 144 |
|
145 |
| -def __rshift__(x1: array, x2: array): |
| 145 | +def __rshift__(x1: array, x2: array) -> array: |
146 | 146 | """
|
147 | 147 | Note: __rshift__ is a method of the array object.
|
148 | 148 | """
|
149 | 149 | pass
|
150 | 150 |
|
151 |
| -def __rshift__(x1: array, x2: array): |
| 151 | +def __setitem__(x, key, value): |
152 | 152 | """
|
153 | 153 | Note: __setitem__ is a method of the array object.
|
154 | 154 | """
|
155 | 155 | pass
|
156 | 156 |
|
157 |
| -def __sub__(x1: array, x2: array): |
| 157 | +def __sub__(x1: array, x2: array) -> array: |
158 | 158 | """
|
159 | 159 | Note: __sub__ is a method of the array object.
|
160 | 160 | """
|
161 | 161 | pass
|
162 | 162 |
|
163 |
| -def __truediv__(x1: array, x2: array): |
| 163 | +def __truediv__(x1: array, x2: array) -> array: |
164 | 164 | """
|
165 | 165 | Note: __truediv__ is a method of the array object.
|
166 | 166 | """
|
167 | 167 | pass
|
168 | 168 |
|
169 |
| -def __xor__(x1: array, x2: array): |
| 169 | +def __xor__(x1: array, x2: array) -> array: |
170 | 170 | """
|
171 | 171 | Note: __xor__ is a method of the array object.
|
172 | 172 | """
|
|
0 commit comments