annotate run/many_functions_01.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents f87ba6507260
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
202
4cd33115f015 1) fixed @author@ typos
thomask
parents: 2
diff changeset
1 // $HeadURL$
4cd33115f015 1) fixed @author@ typos
thomask
parents: 2
diff changeset
2 // $Date$
4cd33115f015 1) fixed @author@ typos
thomask
parents: 2
diff changeset
3 // $Author$
4cd33115f015 1) fixed @author@ typos
thomask
parents: 2
diff changeset
4
4cd33115f015 1) fixed @author@ typos
thomask
parents: 2
diff changeset
5 // @author@ Daniel Horn <hellcatv@hotmail.com>
2
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6 // @date@ 2004-05-07
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7
374
f87ba6507260 added missing meta-data
thomask
parents: 202
diff changeset
8 module dstress.run.many_functions_01;
f87ba6507260 added missing meta-data
thomask
parents: 202
diff changeset
9
2
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10 int main () {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11 return 0;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13 struct vec {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14 float f;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16 vec xx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20 vec xxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
23 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
24 vec xxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
25 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
26 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
27 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
28 vec xxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
29 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
30 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
31 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
32 vec xxxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
33 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
34 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
35 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
36 vec xxxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
37 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
38 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
39 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
40 vec xxxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
41 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
42 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
43 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
44 vec xxxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
45 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
46 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
47 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
48 vec xxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
49 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
50 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
51 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
52 vec xxxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
53 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
54 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
55 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
56 vec xxxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
57 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
58 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
59 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
60 vec xxxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
61 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
62 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
63 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
64 vec xxxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
65 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
66 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
67 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
68 vec xxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
69 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
70 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
71 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
72 vec xxxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
73 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
74 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
75 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
76 vec xxxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
77 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
78 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
79 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
80 vec xxxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
81 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
82 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
83 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
84 vec xxxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
85 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
86 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
87 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
88 vec xxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
89 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
90 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
91 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
92 vec xxxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
93 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
94 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
95 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
96 vec xxxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
97 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
98 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
99 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
100 vec xxxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
104 vec xxxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
108 vec xxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
112 vec xxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
116 vec xxxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
120 vec xxxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
124 vec xxxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
128 vec xxxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
132 vec xxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
136 vec xxxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
140 vec xxxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
144 vec xxxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
148 vec xxxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
152 vec xxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
156 vec xxxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
160 vec xxxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
164 vec xxxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
168 vec xxxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
172 vec xxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
176 vec xxxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
180 vec xxxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
184 vec xxxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
188 vec xxxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
192 vec xxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
196 vec xxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
200 vec xxxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
204 vec xxxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
208 vec xxxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
212 vec xxxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
216 vec xxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
220 vec xxxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
224 vec xxxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
228 vec xxxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
232 vec xxxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
236 vec xxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
240 vec xxxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
244 vec xxxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
248 vec xxxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
252 vec xxxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
256 vec xxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
260 vec xxxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
264 vec xxxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
268 vec xxxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
272 vec xxxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
276 vec xxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
280 vec xxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
284 vec xxxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
288 vec xxxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
292 vec xxxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
296 vec xxxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
300 vec xxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
304 vec xxxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
308 vec xxxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
312 vec xxxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
316 vec xxxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
320 vec xxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
324 vec xxxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
328 vec xxxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
332 vec xxxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
336 vec xxxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
340 vec xxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
344 vec xxxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
348 vec xxxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
352 vec xxxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
356 vec xxxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
360 vec xxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
364 vec xxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
368 vec xxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
372 vec xxyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
376 vec xxyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
380 vec xxyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
384 vec xxyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
388 vec xxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
392 vec xxyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
396 vec xxyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
400 vec xxyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
404 vec xxyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
408 vec xxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
412 vec xxyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
416 vec xxyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
420 vec xxyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
424 vec xxyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
428 vec xxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
432 vec xxyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
436 vec xxyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
440 vec xxyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
444 vec xxyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
448 vec xxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
452 vec xxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
456 vec xxyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
460 vec xxyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
464 vec xxyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
468 vec xxyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
472 vec xxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
476 vec xxyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
480 vec xxyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
484 vec xxyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
488 vec xxyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
492 vec xxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
496 vec xxyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
500 vec xxyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
504 vec xxyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
508 vec xxyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
512 vec xxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
516 vec xxyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
520 vec xxyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
524 vec xxyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
528 vec xxyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
532 vec xxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
536 vec xxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
540 vec xxyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
544 vec xxyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
548 vec xxyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
552 vec xxyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
556 vec xxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
560 vec xxyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
564 vec xxyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
568 vec xxyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
572 vec xxyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
576 vec xxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
580 vec xxyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
584 vec xxyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
588 vec xxyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
592 vec xxyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
596 vec xxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
600 vec xxyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
604 vec xxyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
608 vec xxyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
612 vec xxyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
616 vec xxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
620 vec xxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
624 vec xxywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
628 vec xxywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
632 vec xxywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
636 vec xxywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
640 vec xxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
644 vec xxywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
648 vec xxywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
652 vec xxywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
656 vec xxywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
660 vec xxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
664 vec xxywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
668 vec xxywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
672 vec xxywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
676 vec xxywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
680 vec xxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
684 vec xxywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
688 vec xxywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
692 vec xxywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
696 vec xxywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
700 vec xxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
704 vec xxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
708 vec xxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
712 vec xxzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
716 vec xxzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
720 vec xxzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
724 vec xxzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
728 vec xxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
732 vec xxzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
736 vec xxzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
740 vec xxzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
744 vec xxzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
748 vec xxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
752 vec xxzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
756 vec xxzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
760 vec xxzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
764 vec xxzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
768 vec xxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
772 vec xxzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
776 vec xxzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
780 vec xxzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
784 vec xxzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
788 vec xxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
792 vec xxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
796 vec xxzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
800 vec xxzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
804 vec xxzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
808 vec xxzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
812 vec xxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
816 vec xxzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
820 vec xxzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
824 vec xxzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
828 vec xxzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
832 vec xxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
836 vec xxzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
840 vec xxzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
844 vec xxzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
848 vec xxzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
852 vec xxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
856 vec xxzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
860 vec xxzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
864 vec xxzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
868 vec xxzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
872 vec xxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
876 vec xxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
880 vec xxzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
884 vec xxzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
888 vec xxzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
892 vec xxzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
896 vec xxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
900 vec xxzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
904 vec xxzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
908 vec xxzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
912 vec xxzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
916 vec xxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
920 vec xxzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
924 vec xxzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
928 vec xxzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
932 vec xxzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
936 vec xxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
940 vec xxzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
944 vec xxzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
948 vec xxzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
952 vec xxzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
956 vec xxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
960 vec xxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
964 vec xxzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
968 vec xxzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
972 vec xxzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
976 vec xxzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
980 vec xxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
984 vec xxzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
988 vec xxzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
992 vec xxzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
996 vec xxzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1000 vec xxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1004 vec xxzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1008 vec xxzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1012 vec xxzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1016 vec xxzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1020 vec xxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1024 vec xxzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1028 vec xxzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1032 vec xxzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1036 vec xxzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1040 vec xxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1044 vec xxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1048 vec xxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1052 vec xxwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1056 vec xxwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1060 vec xxwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1064 vec xxwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1068 vec xxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1072 vec xxwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1076 vec xxwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1080 vec xxwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1084 vec xxwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1088 vec xxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1092 vec xxwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1096 vec xxwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1100 vec xxwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1104 vec xxwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1108 vec xxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1112 vec xxwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1116 vec xxwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1120 vec xxwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1124 vec xxwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1128 vec xxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1132 vec xxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1136 vec xxwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1140 vec xxwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1144 vec xxwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1148 vec xxwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1152 vec xxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1156 vec xxwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1160 vec xxwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1164 vec xxwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1168 vec xxwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1172 vec xxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1176 vec xxwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1180 vec xxwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1184 vec xxwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1188 vec xxwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1192 vec xxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1196 vec xxwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1200 vec xxwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1204 vec xxwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1208 vec xxwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1212 vec xxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1216 vec xxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1220 vec xxwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1224 vec xxwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1228 vec xxwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1232 vec xxwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1236 vec xxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1240 vec xxwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1244 vec xxwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1248 vec xxwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1252 vec xxwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1256 vec xxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1260 vec xxwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1264 vec xxwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1268 vec xxwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1272 vec xxwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1276 vec xxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1280 vec xxwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1284 vec xxwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1288 vec xxwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1292 vec xxwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1296 vec xxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1300 vec xxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1304 vec xxwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1308 vec xxwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1312 vec xxwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1316 vec xxwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1320 vec xxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1324 vec xxwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1328 vec xxwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1332 vec xxwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1336 vec xxwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1340 vec xxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1344 vec xxwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1348 vec xxwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1352 vec xxwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1356 vec xxwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1360 vec xxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1364 vec xxwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1368 vec xxwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1372 vec xxwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1376 vec xxwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1380 vec xy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1384 vec xy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1385 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1386 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1387 vec xyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1388 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1389 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1390 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1391 vec xyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1392 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1393 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1394 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1395 vec xyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1396 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1397 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1398 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1399 vec xyxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1400 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1401 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1402 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1403 vec xyxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1404 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1405 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1406 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1407 vec xyxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1408 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1409 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1411 vec xyxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1415 vec xyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1419 vec xyxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1423 vec xyxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1427 vec xyxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1431 vec xyxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1435 vec xyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1439 vec xyxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1443 vec xyxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1447 vec xyxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1451 vec xyxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1455 vec xyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1459 vec xyxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1463 vec xyxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1467 vec xyxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1468 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1469 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1470 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1471 vec xyxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1472 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1473 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1474 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1475 vec xyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1476 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1477 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1478 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1479 vec xyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1480 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1481 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1482 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1483 vec xyxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1484 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1485 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1486 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1487 vec xyxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1488 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1489 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1490 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1491 vec xyxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1492 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1493 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1494 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1495 vec xyxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1496 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1497 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1498 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1499 vec xyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1500 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1501 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1502 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1503 vec xyxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1504 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1505 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1507 vec xyxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1511 vec xyxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1515 vec xyxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1519 vec xyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1523 vec xyxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1524 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1525 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1526 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1527 vec xyxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1528 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1529 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1530 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1531 vec xyxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1532 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1533 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1534 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1535 vec xyxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1536 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1537 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1538 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1539 vec xyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1540 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1541 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1542 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1543 vec xyxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1544 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1545 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1546 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1547 vec xyxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1548 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1549 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1550 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1551 vec xyxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1552 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1553 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1554 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1555 vec xyxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1556 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1557 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1558 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1559 vec xyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1560 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1561 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1562 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1563 vec xyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1564 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1565 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1566 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1567 vec xyxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1568 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1569 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1570 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1571 vec xyxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1572 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1573 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1574 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1575 vec xyxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1576 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1577 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1578 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1579 vec xyxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1580 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1581 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1582 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1583 vec xyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1584 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1585 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1586 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1587 vec xyxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1588 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1589 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1590 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1591 vec xyxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1592 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1593 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1595 vec xyxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1596 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1597 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1598 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1599 vec xyxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1600 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1601 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1602 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1603 vec xyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1604 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1605 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1606 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1607 vec xyxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1608 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1609 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1610 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1611 vec xyxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1612 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1613 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1614 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1615 vec xyxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1616 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1617 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1618 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1619 vec xyxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1620 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1621 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1622 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1623 vec xyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1624 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1625 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1626 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1627 vec xyxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1628 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1629 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1631 vec xyxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1635 vec xyxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1639 vec xyxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1643 vec xyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1644 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1645 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1646 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1647 vec xyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1648 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1649 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1650 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1651 vec xyxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1652 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1653 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1654 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1655 vec xyxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1656 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1657 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1658 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1659 vec xyxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1660 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1661 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1662 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1663 vec xyxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1664 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1665 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1667 vec xyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1668 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1669 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1670 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1671 vec xyxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1672 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1673 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1674 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1675 vec xyxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1676 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1677 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1678 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1679 vec xyxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1680 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1681 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1682 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1683 vec xyxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1684 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1685 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1686 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1687 vec xyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1688 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1689 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1690 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1691 vec xyxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1692 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1693 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1694 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1695 vec xyxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1696 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1697 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1698 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1699 vec xyxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1700 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1701 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1702 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1703 vec xyxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1704 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1705 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1706 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1707 vec xyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1708 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1709 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1710 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1711 vec xyxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1712 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1713 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1714 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1715 vec xyxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1716 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1717 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1718 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1719 vec xyxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1720 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1721 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1722 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1723 vec xyxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1724 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1725 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1726 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1727 vec xyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1728 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1729 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1730 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1731 vec xyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1732 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1733 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1734 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1735 vec xyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1736 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1737 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1738 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1739 vec xyyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1740 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1741 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1742 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1743 vec xyyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1744 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1745 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1746 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1747 vec xyyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1748 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1749 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1750 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1751 vec xyyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1752 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1753 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1754 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1755 vec xyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1756 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1757 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1758 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1759 vec xyyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1760 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1761 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1762 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1763 vec xyyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1764 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1765 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1766 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1767 vec xyyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1768 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1769 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1770 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1771 vec xyyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1772 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1773 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1774 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1775 vec xyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1776 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1777 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1778 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1779 vec xyyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1780 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1781 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1782 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1783 vec xyyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1784 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1785 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1786 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1787 vec xyyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1788 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1789 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1790 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1791 vec xyyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1792 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1793 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1794 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1795 vec xyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1796 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1797 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1798 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1799 vec xyyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1800 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1801 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1802 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1803 vec xyyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1804 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1805 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1806 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1807 vec xyyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1808 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1809 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1810 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1811 vec xyyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1812 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1813 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1814 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1815 vec xyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1816 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1817 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1818 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1819 vec xyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1820 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1821 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1822 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1823 vec xyyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1824 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1825 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1826 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1827 vec xyyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1828 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1829 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1830 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1831 vec xyyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1832 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1833 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1834 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1835 vec xyyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1836 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1837 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1838 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1839 vec xyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1840 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1841 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1842 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1843 vec xyyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1844 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1845 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1846 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1847 vec xyyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1848 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1849 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1850 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1851 vec xyyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1852 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1853 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1854 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1855 vec xyyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1856 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1857 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1858 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1859 vec xyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1860 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1861 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1862 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1863 vec xyyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1864 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1865 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1866 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1867 vec xyyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1868 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1869 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1870 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1871 vec xyyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1872 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1873 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1874 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1875 vec xyyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1876 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1877 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1878 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1879 vec xyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1880 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1881 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1882 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1883 vec xyyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1884 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1885 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1886 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1887 vec xyyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1888 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1889 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1890 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1891 vec xyyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1892 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1893 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1894 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1895 vec xyyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1896 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1897 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1898 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1899 vec xyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1900 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1901 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1902 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1903 vec xyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1904 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1905 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1906 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1907 vec xyyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1908 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1909 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1910 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1911 vec xyyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1912 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1913 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1914 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1915 vec xyyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1916 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1917 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1918 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1919 vec xyyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1920 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1921 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1922 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1923 vec xyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1924 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1925 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1926 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1927 vec xyyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1928 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1929 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1930 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1931 vec xyyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1932 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1933 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1934 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1935 vec xyyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1936 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1937 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1938 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1939 vec xyyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1940 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1941 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1942 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1943 vec xyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1944 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1945 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1946 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1947 vec xyyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1948 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1949 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1950 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1951 vec xyyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1952 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1953 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1954 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1955 vec xyyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1956 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1957 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1958 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1959 vec xyyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1960 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1961 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1962 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1963 vec xyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1964 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1965 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1966 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1967 vec xyyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1968 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1969 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1970 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1971 vec xyyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1972 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1973 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1974 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1975 vec xyyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1976 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1977 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1978 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1979 vec xyyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1980 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1981 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1982 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1983 vec xyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1984 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1985 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1986 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1987 vec xyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1988 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1989 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1990 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1991 vec xyywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1992 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1993 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1994 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1995 vec xyywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1996 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1997 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1998 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
1999 vec xyywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2000 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2001 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2002 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2003 vec xyywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2004 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2005 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2006 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2007 vec xyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2008 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2009 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2010 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2011 vec xyywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2012 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2013 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2014 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2015 vec xyywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2016 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2017 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2018 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2019 vec xyywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2020 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2021 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2022 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2023 vec xyywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2024 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2025 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2026 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2027 vec xyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2028 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2029 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2030 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2031 vec xyywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2032 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2033 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2034 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2035 vec xyywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2036 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2037 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2038 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2039 vec xyywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2040 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2041 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2042 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2043 vec xyywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2044 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2045 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2046 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2047 vec xyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2048 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2049 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2050 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2051 vec xyywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2052 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2053 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2054 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2055 vec xyywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2056 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2057 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2058 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2059 vec xyywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2060 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2061 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2062 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2063 vec xyywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2064 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2065 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2066 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2067 vec xyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2068 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2069 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2070 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2071 vec xyz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2072 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2073 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2074 vec xyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2075 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2076 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2077 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2078 vec xyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2079 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2080 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2081 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2082 vec xyzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2083 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2084 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2085 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2086 vec xyzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2087 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2088 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2089 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2090 vec xyzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2091 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2092 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2093 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2094 vec xyzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2095 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2096 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2097 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2098 vec xyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2099 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2100 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2101 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2102 vec xyzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2103 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2104 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2105 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2106 vec xyzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2107 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2108 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2109 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2110 vec xyzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2111 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2112 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2113 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2114 vec xyzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2115 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2116 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2117 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2118 vec xyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2119 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2120 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2121 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2122 vec xyzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2123 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2124 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2125 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2126 vec xyzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2127 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2128 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2129 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2130 vec xyzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2131 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2132 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2133 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2134 vec xyzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2135 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2136 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2137 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2138 vec xyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2139 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2140 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2141 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2142 vec xyzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2143 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2144 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2145 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2146 vec xyzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2147 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2148 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2149 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2150 vec xyzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2151 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2152 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2153 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2154 vec xyzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2155 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2156 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2157 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2158 vec xyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2159 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2160 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2161 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2162 vec xyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2163 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2164 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2165 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2166 vec xyzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2167 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2168 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2169 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2170 vec xyzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2171 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2172 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2173 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2174 vec xyzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2175 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2176 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2177 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2178 vec xyzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2179 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2180 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2181 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2182 vec xyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2183 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2184 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2185 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2186 vec xyzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2187 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2188 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2189 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2190 vec xyzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2191 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2192 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2193 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2194 vec xyzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2195 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2196 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2197 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2198 vec xyzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2199 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2200 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2201 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2202 vec xyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2203 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2204 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2205 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2206 vec xyzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2207 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2208 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2209 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2210 vec xyzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2211 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2212 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2213 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2214 vec xyzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2215 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2216 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2217 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2218 vec xyzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2219 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2220 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2221 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2222 vec xyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2223 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2224 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2225 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2226 vec xyzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2227 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2228 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2229 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2230 vec xyzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2231 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2232 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2233 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2234 vec xyzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2235 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2236 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2237 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2238 vec xyzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2239 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2240 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2241 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2242 vec xyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2243 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2244 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2245 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2246 vec xyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2247 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2248 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2249 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2250 vec xyzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2251 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2252 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2253 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2254 vec xyzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2255 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2256 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2257 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2258 vec xyzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2259 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2260 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2261 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2262 vec xyzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2263 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2264 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2265 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2266 vec xyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2267 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2268 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2269 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2270 vec xyzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2271 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2272 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2273 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2274 vec xyzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2275 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2276 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2277 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2278 vec xyzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2279 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2280 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2281 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2282 vec xyzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2283 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2284 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2285 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2286 vec xyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2287 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2288 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2289 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2290 vec xyzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2291 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2292 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2293 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2294 vec xyzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2295 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2296 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2297 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2298 vec xyzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2299 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2300 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2301 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2302 vec xyzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2303 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2304 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2305 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2306 vec xyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2307 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2308 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2309 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2310 vec xyzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2311 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2312 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2313 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2314 vec xyzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2315 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2316 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2317 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2318 vec xyzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2319 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2320 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2321 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2322 vec xyzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2323 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2324 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2325 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2326 vec xyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2327 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2328 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2329 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2330 vec xyzw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2331 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2333 vec xyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2337 vec xyzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2341 vec xyzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2345 vec xyzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2349 vec xyzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2353 vec xyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2357 vec xyzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2361 vec xyzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2365 vec xyzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2369 vec xyzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2370 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2371 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2372 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2373 vec xyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2374 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2375 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2376 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2377 vec xyzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2378 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2379 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2380 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2381 vec xyzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2382 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2383 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2384 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2385 vec xyzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2386 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2387 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2388 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2389 vec xyzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2390 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2391 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2392 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2393 vec xyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2394 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2395 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2396 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2397 vec xyzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2398 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2399 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2400 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2401 vec xyzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2402 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2403 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2404 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2405 vec xyzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2406 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2407 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2408 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2409 vec xyzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2410 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2411 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2412 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2413 vec xyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2414 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2415 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2416 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2417 vec xyw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2418 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2420 vec xywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2424 vec xywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2428 vec xywxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2432 vec xywxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2436 vec xywxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2440 vec xywxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2444 vec xywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2448 vec xywxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2452 vec xywxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2456 vec xywxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2460 vec xywxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2464 vec xywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2468 vec xywxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2472 vec xywxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2476 vec xywxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2480 vec xywxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2484 vec xywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2488 vec xywxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2492 vec xywxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2496 vec xywxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2500 vec xywxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2504 vec xywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2508 vec xywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2512 vec xywyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2516 vec xywyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2520 vec xywyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2524 vec xywyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2528 vec xywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2532 vec xywyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2536 vec xywyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2540 vec xywyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2544 vec xywyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2548 vec xywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2552 vec xywyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2556 vec xywyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2560 vec xywyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2564 vec xywyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2568 vec xywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2572 vec xywywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2576 vec xywywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2580 vec xywywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2584 vec xywyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2588 vec xywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2592 vec xywz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2593 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2595 vec xywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2596 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2597 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2598 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2599 vec xywzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2600 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2601 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2602 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2603 vec xywzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2604 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2605 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2606 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2607 vec xywzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2608 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2609 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2610 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2611 vec xywzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2612 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2613 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2614 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2615 vec xywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2616 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2617 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2618 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2619 vec xywzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2620 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2621 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2622 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2623 vec xywzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2624 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2625 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2626 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2627 vec xywzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2628 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2629 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2631 vec xywzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2635 vec xywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2639 vec xywzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2643 vec xywzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2644 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2645 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2646 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2647 vec xywzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2648 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2649 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2650 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2651 vec xywzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2652 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2653 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2654 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2655 vec xywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2656 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2657 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2658 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2659 vec xywzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2660 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2661 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2662 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2663 vec xywzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2664 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2665 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2667 vec xywzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2668 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2669 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2670 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2671 vec xywzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2672 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2673 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2674 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2675 vec xyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2676 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2677 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2678 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2679 vec xywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2680 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2681 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2682 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2683 vec xywwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2684 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2685 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2686 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2687 vec xywwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2688 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2689 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2690 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2691 vec xywwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2692 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2693 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2694 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2695 vec xywwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2696 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2697 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2698 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2699 vec xywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2700 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2701 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2702 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2703 vec xywwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2704 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2705 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2706 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2707 vec xywwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2708 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2709 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2710 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2711 vec xywwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2712 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2713 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2714 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2715 vec xywwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2716 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2717 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2718 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2719 vec xywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2720 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2721 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2722 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2723 vec xywwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2724 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2725 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2726 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2727 vec xywwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2728 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2729 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2730 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2731 vec xywwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2732 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2733 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2734 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2735 vec xywwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2736 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2737 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2738 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2739 vec xywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2740 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2741 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2742 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2743 vec xywwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2744 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2745 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2746 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2747 vec xywwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2748 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2749 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2750 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2751 vec xywwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2752 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2753 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2754 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2755 vec xywwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2756 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2757 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2758 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2759 vec xz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2760 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2761 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2762 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2763 vec xz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2764 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2765 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2766 vec xzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2767 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2768 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2769 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2770 vec xzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2771 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2772 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2773 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2774 vec xzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2775 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2776 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2777 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2778 vec xzxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2779 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2780 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2781 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2782 vec xzxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2783 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2784 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2785 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2786 vec xzxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2787 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2788 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2789 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2790 vec xzxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2791 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2792 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2793 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2794 vec xzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2795 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2796 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2797 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2798 vec xzxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2799 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2800 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2801 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2802 vec xzxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2803 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2804 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2805 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2806 vec xzxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2807 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2808 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2809 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2810 vec xzxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2811 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2812 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2813 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2814 vec xzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2815 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2816 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2817 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2818 vec xzxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2819 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2820 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2821 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2822 vec xzxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2823 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2824 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2825 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2826 vec xzxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2827 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2828 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2829 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2830 vec xzxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2831 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2832 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2833 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2834 vec xzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2835 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2836 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2838 vec xzxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2842 vec xzxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2846 vec xzxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2850 vec xzxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2854 vec xzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2858 vec xzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2862 vec xzxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2866 vec xzxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2870 vec xzxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2871 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2872 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2873 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2874 vec xzxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2875 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2876 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2877 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2878 vec xzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2879 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2880 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2881 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2882 vec xzxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2883 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2884 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2885 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2886 vec xzxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2887 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2888 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2890 vec xzxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2894 vec xzxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2898 vec xzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2902 vec xzxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2903 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2904 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2905 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2906 vec xzxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2907 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2908 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2909 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2910 vec xzxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2911 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2912 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2913 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2914 vec xzxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2915 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2916 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2917 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2918 vec xzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2919 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2920 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2921 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2922 vec xzxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2923 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2924 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2925 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2926 vec xzxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2927 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2928 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2929 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2930 vec xzxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2931 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2932 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2933 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2934 vec xzxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2935 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2936 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2937 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2938 vec xzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2939 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2940 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2941 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2942 vec xzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2943 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2944 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2945 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2946 vec xzxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2947 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2948 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2949 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2950 vec xzxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2951 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2952 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2953 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2954 vec xzxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2955 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2956 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2957 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2958 vec xzxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2959 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2960 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2961 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2962 vec xzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2963 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2964 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2965 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2966 vec xzxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2967 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2968 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2969 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2970 vec xzxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2971 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2972 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2973 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2974 vec xzxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2975 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2976 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2977 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2978 vec xzxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2979 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2980 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2981 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2982 vec xzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2983 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2984 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2985 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2986 vec xzxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2987 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2988 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2989 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2990 vec xzxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2991 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2992 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2993 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2994 vec xzxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2995 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2996 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2997 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2998 vec xzxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
2999 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3000 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3001 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3002 vec xzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3003 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3004 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3005 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3006 vec xzxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3007 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3008 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3009 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3010 vec xzxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3011 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3012 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3013 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3014 vec xzxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3015 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3016 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3017 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3018 vec xzxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3019 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3020 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3021 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3022 vec xzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3023 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3024 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3025 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3026 vec xzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3027 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3028 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3029 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3030 vec xzxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3031 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3032 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3033 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3034 vec xzxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3035 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3036 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3037 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3038 vec xzxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3039 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3040 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3041 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3042 vec xzxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3043 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3044 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3045 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3046 vec xzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3047 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3048 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3049 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3050 vec xzxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3051 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3052 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3053 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3054 vec xzxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3055 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3056 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3057 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3058 vec xzxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3059 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3060 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3061 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3062 vec xzxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3063 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3064 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3065 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3066 vec xzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3067 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3068 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3069 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3070 vec xzxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3071 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3072 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3073 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3074 vec xzxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3075 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3076 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3077 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3078 vec xzxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3079 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3080 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3081 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3082 vec xzxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3083 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3084 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3085 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3086 vec xzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3087 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3088 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3089 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3090 vec xzxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3091 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3092 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3093 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3094 vec xzxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3095 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3096 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3097 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3098 vec xzxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3099 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3100 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3101 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3102 vec xzxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3103 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3104 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3105 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3106 vec xzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3107 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3108 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3109 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3110 vec xzy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3111 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3112 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3113 vec xzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3114 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3115 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3116 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3117 vec xzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3118 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3119 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3120 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3121 vec xzyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3122 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3123 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3124 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3125 vec xzyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3126 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3127 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3128 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3129 vec xzyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3130 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3131 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3132 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3133 vec xzyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3134 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3135 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3136 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3137 vec xzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3138 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3139 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3140 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3141 vec xzyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3142 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3143 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3145 vec xzyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3149 vec xzyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3153 vec xzyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3157 vec xzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3161 vec xzyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3165 vec xzyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3169 vec xzyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3173 vec xzyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3177 vec xzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3181 vec xzyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3185 vec xzyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3189 vec xzyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3193 vec xzyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3197 vec xzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3201 vec xzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3205 vec xzyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3209 vec xzyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3213 vec xzyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3217 vec xzyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3221 vec xzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3225 vec xzyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3229 vec xzyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3233 vec xzyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3237 vec xzyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3241 vec xzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3245 vec xzyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3249 vec xzyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3253 vec xzyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3257 vec xzyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3261 vec xzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3265 vec xzyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3269 vec xzyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3273 vec xzyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3277 vec xzyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3281 vec xzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3285 vec xzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3289 vec xzyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3293 vec xzyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3297 vec xzyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3301 vec xzyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3305 vec xzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3309 vec xzyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3313 vec xzyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3317 vec xzyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3321 vec xzyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3325 vec xzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3329 vec xzyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3333 vec xzyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3337 vec xzyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3341 vec xzyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3345 vec xzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3349 vec xzyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3353 vec xzyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3357 vec xzyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3361 vec xzyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3365 vec xzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3369 vec xzyw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3370 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3372 vec xzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3376 vec xzywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3380 vec xzywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3384 vec xzywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3388 vec xzywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3392 vec xzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3396 vec xzywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3400 vec xzywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3404 vec xzywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3408 vec xzywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3412 vec xzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3416 vec xzywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3420 vec xzywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3424 vec xzywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3428 vec xzywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3432 vec xzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3436 vec xzywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3440 vec xzywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3444 vec xzywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3448 vec xzywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3452 vec xzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3456 vec xzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3460 vec xzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3464 vec xzzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3468 vec xzzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3472 vec xzzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3476 vec xzzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3480 vec xzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3484 vec xzzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3488 vec xzzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3492 vec xzzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3496 vec xzzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3500 vec xzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3504 vec xzzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3508 vec xzzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3512 vec xzzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3516 vec xzzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3520 vec xzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3524 vec xzzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3528 vec xzzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3532 vec xzzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3536 vec xzzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3540 vec xzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3544 vec xzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3548 vec xzzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3552 vec xzzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3556 vec xzzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3560 vec xzzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3564 vec xzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3568 vec xzzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3572 vec xzzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3576 vec xzzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3580 vec xzzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3584 vec xzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3588 vec xzzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3592 vec xzzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3596 vec xzzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3600 vec xzzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3604 vec xzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3608 vec xzzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3612 vec xzzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3616 vec xzzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3620 vec xzzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3624 vec xzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3628 vec xzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3632 vec xzzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3636 vec xzzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3640 vec xzzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3644 vec xzzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3648 vec xzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3652 vec xzzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3656 vec xzzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3660 vec xzzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3664 vec xzzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3668 vec xzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3672 vec xzzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3676 vec xzzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3680 vec xzzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3684 vec xzzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3688 vec xzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3692 vec xzzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3696 vec xzzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3700 vec xzzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3704 vec xzzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3708 vec xzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3712 vec xzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3716 vec xzzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3720 vec xzzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3724 vec xzzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3728 vec xzzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3732 vec xzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3736 vec xzzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3740 vec xzzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3744 vec xzzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3748 vec xzzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3752 vec xzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3756 vec xzzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3760 vec xzzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3764 vec xzzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3768 vec xzzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3772 vec xzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3776 vec xzzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3780 vec xzzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3784 vec xzzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3788 vec xzzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3792 vec xzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3796 vec xzw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3797 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3798 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3799 vec xzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3800 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3801 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3802 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3803 vec xzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3804 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3805 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3806 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3807 vec xzwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3808 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3809 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3810 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3811 vec xzwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3812 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3813 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3814 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3815 vec xzwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3816 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3817 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3818 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3819 vec xzwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3820 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3821 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3822 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3823 vec xzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3824 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3825 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3826 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3827 vec xzwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3828 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3829 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3830 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3831 vec xzwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3832 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3833 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3834 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3835 vec xzwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3836 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3837 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3838 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3839 vec xzwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3840 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3841 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3842 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3843 vec xzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3844 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3845 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3846 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3847 vec xzwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3848 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3849 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3850 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3851 vec xzwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3852 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3853 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3854 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3855 vec xzwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3856 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3857 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3858 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3859 vec xzwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3860 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3861 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3862 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3863 vec xzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3864 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3865 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3866 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3867 vec xzwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3868 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3869 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3870 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3871 vec xzwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3872 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3873 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3874 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3875 vec xzwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3876 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3877 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3878 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3879 vec xzwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3880 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3881 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3882 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3883 vec xzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3884 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3885 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3886 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3887 vec xzwy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3888 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3890 vec xzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3894 vec xzwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3898 vec xzwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3902 vec xzwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3903 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3904 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3905 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3906 vec xzwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3907 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3908 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3909 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3910 vec xzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3911 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3912 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3913 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3914 vec xzwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3915 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3916 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3917 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3918 vec xzwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3919 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3920 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3921 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3922 vec xzwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3923 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3924 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3925 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3926 vec xzwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3927 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3928 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3929 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3930 vec xzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3931 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3932 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3933 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3934 vec xzwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3935 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3936 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3937 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3938 vec xzwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3939 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3940 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3941 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3942 vec xzwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3943 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3944 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3945 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3946 vec xzwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3947 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3948 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3949 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3950 vec xzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3951 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3952 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3953 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3954 vec xzwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3955 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3956 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3957 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3958 vec xzwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3959 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3960 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3961 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3962 vec xzwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3963 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3964 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3965 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3966 vec xzwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3967 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3968 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3969 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3970 vec xzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3971 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3972 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3973 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3974 vec xzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3975 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3976 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3977 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3978 vec xzwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3979 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3980 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3981 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3982 vec xzwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3983 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3984 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3985 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3986 vec xzwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3987 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3988 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3989 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3990 vec xzwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3991 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3992 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3993 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3994 vec xzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3995 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3996 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3997 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3998 vec xzwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
3999 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4000 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4001 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4002 vec xzwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4003 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4004 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4005 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4006 vec xzwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4007 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4008 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4009 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4010 vec xzwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4011 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4012 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4013 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4014 vec xzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4015 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4016 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4017 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4018 vec xzwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4019 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4020 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4021 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4022 vec xzwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4023 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4024 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4025 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4026 vec xzwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4027 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4028 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4029 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4030 vec xzwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4031 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4032 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4033 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4034 vec xzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4035 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4036 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4037 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4038 vec xzwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4039 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4040 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4041 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4042 vec xzwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4043 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4044 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4045 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4046 vec xzwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4047 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4048 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4049 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4050 vec xzwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4051 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4052 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4053 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4054 vec xzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4055 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4056 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4057 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4058 vec xzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4059 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4060 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4061 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4062 vec xzwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4063 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4064 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4065 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4066 vec xzwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4067 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4068 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4069 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4070 vec xzwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4071 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4072 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4073 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4074 vec xzwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4075 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4076 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4077 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4078 vec xzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4079 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4080 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4081 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4082 vec xzwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4083 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4084 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4085 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4086 vec xzwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4087 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4088 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4089 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4090 vec xzwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4091 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4092 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4093 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4094 vec xzwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4095 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4096 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4097 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4098 vec xzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4099 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4100 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4101 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4102 vec xzwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4103 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4104 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4105 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4106 vec xzwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4107 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4108 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4109 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4110 vec xzwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4111 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4112 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4113 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4114 vec xzwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4115 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4116 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4117 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4118 vec xzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4119 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4120 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4121 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4122 vec xzwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4123 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4124 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4125 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4126 vec xzwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4127 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4128 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4129 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4130 vec xzwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4131 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4132 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4133 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4134 vec xzwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4135 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4136 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4137 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4138 vec xw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4139 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4140 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4141 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4142 vec xw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4143 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4145 vec xwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4149 vec xwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4153 vec xwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4157 vec xwxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4161 vec xwxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4165 vec xwxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4169 vec xwxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4173 vec xwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4177 vec xwxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4181 vec xwxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4185 vec xwxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4189 vec xwxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4193 vec xwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4197 vec xwxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4201 vec xwxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4205 vec xwxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4209 vec xwxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4213 vec xwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4217 vec xwxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4221 vec xwxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4225 vec xwxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4229 vec xwxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4233 vec xwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4237 vec xwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4241 vec xwxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4245 vec xwxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4249 vec xwxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4253 vec xwxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4257 vec xwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4261 vec xwxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4265 vec xwxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4269 vec xwxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4273 vec xwxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4277 vec xwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4281 vec xwxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4285 vec xwxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4289 vec xwxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4293 vec xwxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4297 vec xwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4301 vec xwxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4305 vec xwxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4309 vec xwxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4313 vec xwxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4317 vec xwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4321 vec xwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4325 vec xwxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4329 vec xwxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4333 vec xwxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4337 vec xwxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4341 vec xwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4345 vec xwxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4349 vec xwxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4353 vec xwxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4357 vec xwxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4361 vec xwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4365 vec xwxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4369 vec xwxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4370 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4371 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4372 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4373 vec xwxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4374 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4375 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4376 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4377 vec xwxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4378 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4379 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4380 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4381 vec xwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4382 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4383 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4384 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4385 vec xwxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4386 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4387 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4388 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4389 vec xwxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4390 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4391 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4392 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4393 vec xwxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4394 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4395 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4396 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4397 vec xwxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4398 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4399 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4400 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4401 vec xwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4402 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4403 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4404 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4405 vec xwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4406 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4407 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4408 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4409 vec xwxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4410 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4411 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4412 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4413 vec xwxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4414 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4415 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4416 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4417 vec xwxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4418 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4419 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4420 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4421 vec xwxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4422 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4423 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4424 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4425 vec xwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4426 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4427 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4428 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4429 vec xwxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4430 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4431 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4432 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4433 vec xwxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4434 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4435 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4436 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4437 vec xwxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4438 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4439 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4440 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4441 vec xwxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4442 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4443 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4444 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4445 vec xwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4446 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4447 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4448 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4449 vec xwxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4450 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4451 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4452 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4453 vec xwxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4454 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4455 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4456 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4457 vec xwxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4458 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4459 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4460 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4461 vec xwxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4462 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4463 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4464 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4465 vec xwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4466 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4467 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4468 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4469 vec xwxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4470 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4471 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4472 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4473 vec xwxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4474 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4475 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4476 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4477 vec xwxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4478 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4479 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4480 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4481 vec xwxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4482 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4483 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4484 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4485 vec xwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4486 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4487 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4488 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4489 vec xwy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4490 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4492 vec xwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4496 vec xwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4500 vec xwyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4504 vec xwyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4508 vec xwyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4512 vec xwyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4516 vec xwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4520 vec xwyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4524 vec xwyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4528 vec xwyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4532 vec xwyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4536 vec xwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4540 vec xwyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4544 vec xwyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4548 vec xwyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4552 vec xwyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4556 vec xwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4560 vec xwyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4564 vec xwyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4568 vec xwyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4572 vec xwyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4576 vec xwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4580 vec xwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4584 vec xwyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4588 vec xwyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4592 vec xwyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4596 vec xwyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4600 vec xwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4604 vec xwyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4608 vec xwyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4612 vec xwyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4616 vec xwyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4620 vec xwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4624 vec xwyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4628 vec xwyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4632 vec xwyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4636 vec xwyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4640 vec xwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4644 vec xwyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4648 vec xwyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4652 vec xwyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4656 vec xwyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4660 vec xwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4664 vec xwyz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4665 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4667 vec xwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4668 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4669 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4670 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4671 vec xwyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4672 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4673 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4674 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4675 vec xwyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4676 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4677 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4678 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4679 vec xwyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4680 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4681 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4682 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4683 vec xwyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4684 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4685 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4686 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4687 vec xwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4688 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4689 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4690 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4691 vec xwyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4692 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4693 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4694 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4695 vec xwyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4696 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4697 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4698 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4699 vec xwyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4700 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4701 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4702 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4703 vec xwyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4704 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4705 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4706 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4707 vec xwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4708 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4709 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4710 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4711 vec xwyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4712 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4713 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4714 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4715 vec xwyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4716 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4717 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4718 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4719 vec xwyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4720 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4721 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4722 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4723 vec xwyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4724 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4725 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4726 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4727 vec xwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4728 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4729 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4730 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4731 vec xwyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4732 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4733 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4734 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4735 vec xwyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4736 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4737 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4738 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4739 vec xwyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4740 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4741 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4742 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4743 vec xwyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4744 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4745 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4746 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4747 vec xwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4748 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4749 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4750 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4751 vec xwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4752 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4753 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4754 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4755 vec xwywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4756 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4757 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4758 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4759 vec xwywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4760 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4761 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4762 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4763 vec xwywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4764 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4765 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4766 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4767 vec xwywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4768 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4769 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4770 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4771 vec xwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4772 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4773 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4774 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4775 vec xwywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4776 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4777 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4778 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4779 vec xwywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4780 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4781 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4782 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4783 vec xwywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4784 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4785 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4786 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4787 vec xwywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4788 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4789 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4790 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4791 vec xwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4792 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4793 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4794 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4795 vec xwywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4796 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4797 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4798 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4799 vec xwywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4800 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4801 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4802 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4803 vec xwywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4804 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4805 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4806 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4807 vec xwywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4808 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4809 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4810 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4811 vec xwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4812 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4813 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4814 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4815 vec xwywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4816 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4817 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4818 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4819 vec xwywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4820 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4821 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4822 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4823 vec xwywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4824 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4825 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4826 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4827 vec xwywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4828 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4829 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4830 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4831 vec xwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4832 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4833 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4834 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4835 vec xwz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4836 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4838 vec xwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4842 vec xwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4846 vec xwzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4850 vec xwzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4854 vec xwzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4858 vec xwzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4862 vec xwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4866 vec xwzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4870 vec xwzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4871 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4872 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4873 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4874 vec xwzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4875 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4876 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4877 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4878 vec xwzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4879 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4880 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4881 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4882 vec xwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4883 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4884 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4885 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4886 vec xwzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4887 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4888 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4890 vec xwzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4894 vec xwzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4898 vec xwzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4902 vec xwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4903 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4904 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4905 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4906 vec xwzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4907 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4908 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4909 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4910 vec xwzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4911 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4912 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4913 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4914 vec xwzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4915 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4916 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4917 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4918 vec xwzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4919 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4920 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4921 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4922 vec xwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4923 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4924 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4925 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4926 vec xwzy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4927 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4928 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4929 vec xwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4930 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4931 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4932 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4933 vec xwzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4934 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4935 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4936 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4937 vec xwzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4938 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4939 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4940 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4941 vec xwzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4942 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4943 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4944 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4945 vec xwzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4946 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4947 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4948 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4949 vec xwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4950 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4951 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4952 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4953 vec xwzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4954 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4955 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4956 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4957 vec xwzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4958 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4959 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4960 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4961 vec xwzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4962 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4963 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4964 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4965 vec xwzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4966 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4967 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4968 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4969 vec xwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4970 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4971 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4972 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4973 vec xwzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4974 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4975 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4976 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4977 vec xwzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4978 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4979 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4980 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4981 vec xwzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4982 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4983 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4984 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4985 vec xwzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4986 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4987 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4988 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4989 vec xwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4990 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4991 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4992 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4993 vec xwzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4994 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4995 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4996 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4997 vec xwzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4998 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
4999 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5000 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5001 vec xwzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5002 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5003 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5004 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5005 vec xwzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5006 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5007 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5008 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5009 vec xwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5010 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5011 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5012 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5013 vec xwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5014 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5015 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5016 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5017 vec xwzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5018 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5019 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5020 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5021 vec xwzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5022 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5023 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5024 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5025 vec xwzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5026 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5027 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5028 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5029 vec xwzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5030 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5031 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5032 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5033 vec xwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5034 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5035 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5036 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5037 vec xwzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5038 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5039 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5040 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5041 vec xwzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5042 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5043 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5044 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5045 vec xwzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5046 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5047 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5048 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5049 vec xwzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5050 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5051 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5052 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5053 vec xwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5054 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5055 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5056 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5057 vec xwzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5058 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5059 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5060 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5061 vec xwzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5062 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5063 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5064 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5065 vec xwzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5066 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5067 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5068 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5069 vec xwzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5070 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5071 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5072 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5073 vec xwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5074 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5075 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5076 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5077 vec xwzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5078 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5079 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5080 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5081 vec xwzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5082 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5083 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5084 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5085 vec xwzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5086 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5087 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5088 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5089 vec xwzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5090 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5091 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5092 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5093 vec xwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5094 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5095 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5096 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5097 vec xwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5098 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5099 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5100 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5101 vec xwzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5102 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5103 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5104 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5105 vec xwzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5106 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5107 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5108 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5109 vec xwzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5110 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5111 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5112 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5113 vec xwzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5114 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5115 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5116 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5117 vec xwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5118 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5119 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5120 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5121 vec xwzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5122 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5123 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5124 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5125 vec xwzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5126 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5127 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5128 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5129 vec xwzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5130 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5131 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5132 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5133 vec xwzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5134 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5135 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5136 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5137 vec xwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5138 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5139 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5140 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5141 vec xwzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5142 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5143 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5145 vec xwzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5149 vec xwzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5153 vec xwzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5157 vec xwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5161 vec xwzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5165 vec xwzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5169 vec xwzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5173 vec xwzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5177 vec xww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5181 vec xwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5185 vec xwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5189 vec xwwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5193 vec xwwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5197 vec xwwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5201 vec xwwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5205 vec xwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5209 vec xwwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5213 vec xwwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5217 vec xwwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5221 vec xwwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5225 vec xwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5229 vec xwwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5233 vec xwwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5237 vec xwwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5241 vec xwwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5245 vec xwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5249 vec xwwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5253 vec xwwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5257 vec xwwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5261 vec xwwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5265 vec xwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5269 vec xwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5273 vec xwwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5277 vec xwwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5281 vec xwwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5285 vec xwwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5289 vec xwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5293 vec xwwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5297 vec xwwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5301 vec xwwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5305 vec xwwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5309 vec xwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5313 vec xwwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5317 vec xwwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5321 vec xwwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5325 vec xwwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5329 vec xwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5333 vec xwwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5337 vec xwwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5341 vec xwwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5345 vec xwwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5349 vec xwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5353 vec xwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5357 vec xwwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5361 vec xwwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5365 vec xwwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5369 vec xwwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5370 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5371 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5372 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5373 vec xwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5374 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5375 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5376 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5377 vec xwwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5378 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5379 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5380 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5381 vec xwwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5382 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5383 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5384 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5385 vec xwwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5386 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5387 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5388 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5389 vec xwwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5390 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5391 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5392 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5393 vec xwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5394 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5395 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5396 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5397 vec xwwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5398 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5399 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5400 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5401 vec xwwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5402 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5403 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5404 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5405 vec xwwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5406 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5407 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5408 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5409 vec xwwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5410 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5411 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5412 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5413 vec xwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5414 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5415 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5416 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5417 vec xwwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5418 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5419 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5420 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5421 vec xwwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5422 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5423 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5424 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5425 vec xwwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5426 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5427 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5428 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5429 vec xwwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5430 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5431 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5432 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5433 vec xwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5434 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5435 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5436 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5437 vec xwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5438 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5439 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5440 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5441 vec xwwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5442 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5443 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5444 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5445 vec xwwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5446 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5447 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5448 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5449 vec xwwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5450 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5451 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5452 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5453 vec xwwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5454 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5455 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5456 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5457 vec xwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5458 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5459 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5460 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5461 vec xwwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5462 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5463 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5464 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5465 vec xwwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5466 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5467 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5468 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5469 vec xwwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5470 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5471 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5472 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5473 vec xwwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5474 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5475 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5476 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5477 vec xwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5478 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5479 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5480 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5481 vec xwwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5482 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5483 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5484 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5485 vec xwwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5486 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5487 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5488 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5489 vec xwwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5490 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5491 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5492 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5493 vec xwwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5494 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5495 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5496 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5497 vec xwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5498 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5499 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5500 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5501 vec xwwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5502 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5503 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5504 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5505 vec xwwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5506 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5507 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5508 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5509 vec xwwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5510 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5511 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5512 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5513 vec xwwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5514 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5515 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5516 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5517 vec yx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5518 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5519 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5520 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5521 vec yx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5522 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5524 vec yxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5528 vec yxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5532 vec yxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5536 vec yxxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5540 vec yxxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5544 vec yxxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5548 vec yxxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5552 vec yxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5556 vec yxxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5560 vec yxxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5564 vec yxxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5568 vec yxxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5572 vec yxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5576 vec yxxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5580 vec yxxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5584 vec yxxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5588 vec yxxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5592 vec yxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5596 vec yxxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5600 vec yxxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5604 vec yxxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5608 vec yxxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5612 vec yxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5616 vec yxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5620 vec yxxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5624 vec yxxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5628 vec yxxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5632 vec yxxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5636 vec yxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5640 vec yxxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5644 vec yxxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5648 vec yxxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5652 vec yxxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5656 vec yxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5660 vec yxxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5664 vec yxxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5668 vec yxxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5672 vec yxxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5676 vec yxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5680 vec yxxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5684 vec yxxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5688 vec yxxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5692 vec yxxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5696 vec yxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5700 vec yxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5704 vec yxxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5708 vec yxxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5712 vec yxxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5716 vec yxxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5720 vec yxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5724 vec yxxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5728 vec yxxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5732 vec yxxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5736 vec yxxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5740 vec yxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5744 vec yxxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5748 vec yxxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5752 vec yxxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5756 vec yxxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5760 vec yxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5764 vec yxxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5768 vec yxxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5772 vec yxxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5776 vec yxxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5780 vec yxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5784 vec yxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5788 vec yxxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5792 vec yxxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5796 vec yxxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5800 vec yxxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5804 vec yxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5808 vec yxxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5812 vec yxxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5816 vec yxxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5820 vec yxxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5824 vec yxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5828 vec yxxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5832 vec yxxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5836 vec yxxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5840 vec yxxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5844 vec yxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5848 vec yxxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5852 vec yxxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5856 vec yxxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5860 vec yxxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5864 vec yxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5868 vec yxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5872 vec yxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5876 vec yxyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5880 vec yxyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5884 vec yxyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5888 vec yxyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5892 vec yxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5896 vec yxyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5900 vec yxyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5904 vec yxyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5908 vec yxyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5912 vec yxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5916 vec yxyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5920 vec yxyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5924 vec yxyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5928 vec yxyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5932 vec yxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5936 vec yxyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5940 vec yxyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5944 vec yxyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5948 vec yxyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5952 vec yxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5956 vec yxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5960 vec yxyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5964 vec yxyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5968 vec yxyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5972 vec yxyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5976 vec yxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5980 vec yxyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5984 vec yxyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5988 vec yxyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5992 vec yxyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5996 vec yxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6000 vec yxyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6004 vec yxyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6008 vec yxyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6012 vec yxyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6016 vec yxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6020 vec yxyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6024 vec yxyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6028 vec yxyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6032 vec yxyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6036 vec yxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6040 vec yxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6044 vec yxyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6048 vec yxyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6052 vec yxyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6056 vec yxyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6060 vec yxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6064 vec yxyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6068 vec yxyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6072 vec yxyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6076 vec yxyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6080 vec yxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6084 vec yxyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6088 vec yxyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6092 vec yxyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6096 vec yxyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6100 vec yxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6104 vec yxyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6108 vec yxyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6112 vec yxyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6116 vec yxyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6120 vec yxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6124 vec yxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6128 vec yxywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6132 vec yxywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6136 vec yxywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6140 vec yxywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6144 vec yxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6148 vec yxywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6152 vec yxywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6156 vec yxywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6160 vec yxywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6164 vec yxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6168 vec yxywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6172 vec yxywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6176 vec yxywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6180 vec yxywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6184 vec yxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6188 vec yxywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6192 vec yxywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6196 vec yxywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6200 vec yxywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6204 vec yxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6208 vec yxz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6209 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6210 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6211 vec yxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6212 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6213 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6214 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6215 vec yxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6216 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6217 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6218 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6219 vec yxzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6220 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6221 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6222 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6223 vec yxzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6224 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6225 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6226 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6227 vec yxzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6228 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6229 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6230 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6231 vec yxzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6232 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6233 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6234 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6235 vec yxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6236 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6237 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6238 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6239 vec yxzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6240 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6241 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6242 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6243 vec yxzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6244 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6245 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6246 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6247 vec yxzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6248 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6249 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6250 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6251 vec yxzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6252 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6253 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6254 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6255 vec yxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6256 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6257 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6258 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6259 vec yxzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6260 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6261 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6262 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6263 vec yxzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6264 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6265 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6266 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6267 vec yxzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6268 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6269 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6270 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6271 vec yxzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6272 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6273 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6274 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6275 vec yxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6276 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6277 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6278 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6279 vec yxzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6280 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6281 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6282 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6283 vec yxzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6284 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6285 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6286 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6287 vec yxzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6288 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6289 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6290 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6291 vec yxzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6292 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6293 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6294 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6295 vec yxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6296 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6297 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6298 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6299 vec yxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6300 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6301 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6302 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6303 vec yxzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6304 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6305 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6307 vec yxzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6308 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6309 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6310 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6311 vec yxzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6312 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6313 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6314 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6315 vec yxzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6316 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6317 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6318 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6319 vec yxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6320 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6321 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6322 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6323 vec yxzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6324 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6325 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6326 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6327 vec yxzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6328 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6329 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6330 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6331 vec yxzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6332 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6333 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6334 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6335 vec yxzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6336 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6337 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6339 vec yxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6343 vec yxzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6344 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6345 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6346 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6347 vec yxzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6348 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6349 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6350 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6351 vec yxzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6352 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6353 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6354 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6355 vec yxzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6356 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6357 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6358 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6359 vec yxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6360 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6361 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6362 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6363 vec yxzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6364 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6365 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6366 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6367 vec yxzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6368 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6369 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6370 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6371 vec yxzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6372 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6373 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6374 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6375 vec yxzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6376 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6377 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6378 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6379 vec yxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6380 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6381 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6382 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6383 vec yxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6384 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6385 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6386 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6387 vec yxzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6388 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6389 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6390 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6391 vec yxzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6392 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6393 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6394 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6395 vec yxzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6396 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6397 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6398 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6399 vec yxzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6400 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6401 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6402 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6403 vec yxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6404 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6405 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6406 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6407 vec yxzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6408 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6409 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6411 vec yxzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6415 vec yxzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6419 vec yxzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6423 vec yxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6427 vec yxzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6431 vec yxzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6435 vec yxzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6439 vec yxzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6443 vec yxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6447 vec yxzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6451 vec yxzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6455 vec yxzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6459 vec yxzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6463 vec yxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6467 vec yxzw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6468 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6469 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6470 vec yxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6471 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6472 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6473 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6474 vec yxzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6475 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6476 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6477 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6478 vec yxzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6479 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6480 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6481 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6482 vec yxzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6483 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6484 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6485 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6486 vec yxzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6487 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6488 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6489 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6490 vec yxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6491 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6492 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6493 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6494 vec yxzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6495 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6496 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6497 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6498 vec yxzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6499 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6500 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6501 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6502 vec yxzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6503 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6504 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6505 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6506 vec yxzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6507 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6508 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6509 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6510 vec yxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6511 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6512 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6513 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6514 vec yxzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6515 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6516 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6517 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6518 vec yxzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6519 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6520 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6521 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6522 vec yxzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6523 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6524 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6526 vec yxzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6530 vec yxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6531 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6532 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6533 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6534 vec yxzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6535 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6536 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6537 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6538 vec yxzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6539 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6540 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6541 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6542 vec yxzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6543 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6544 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6545 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6546 vec yxzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6547 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6548 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6549 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6550 vec yxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6551 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6552 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6553 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6554 vec yxw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6555 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6556 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6557 vec yxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6558 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6559 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6560 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6561 vec yxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6562 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6563 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6564 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6565 vec yxwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6566 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6567 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6568 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6569 vec yxwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6570 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6571 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6572 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6573 vec yxwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6574 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6575 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6576 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6577 vec yxwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6578 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6579 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6580 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6581 vec yxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6582 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6583 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6584 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6585 vec yxwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6586 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6587 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6588 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6589 vec yxwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6590 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6591 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6592 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6593 vec yxwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6594 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6595 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6596 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6597 vec yxwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6598 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6599 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6600 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6601 vec yxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6602 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6603 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6604 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6605 vec yxwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6606 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6607 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6608 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6609 vec yxwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6610 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6611 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6612 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6613 vec yxwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6614 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6615 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6616 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6617 vec yxwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6618 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6619 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6620 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6621 vec yxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6622 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6623 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6624 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6625 vec yxwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6626 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6627 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6628 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6629 vec yxwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6630 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6631 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6632 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6633 vec yxwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6634 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6635 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6636 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6637 vec yxwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6638 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6639 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6640 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6641 vec yxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6642 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6643 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6644 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6645 vec yxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6646 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6647 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6648 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6649 vec yxwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6650 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6651 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6652 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6653 vec yxwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6654 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6655 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6656 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6657 vec yxwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6658 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6659 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6660 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6661 vec yxwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6662 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6663 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6664 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6665 vec yxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6666 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6667 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6668 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6669 vec yxwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6670 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6671 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6672 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6673 vec yxwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6674 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6675 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6676 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6677 vec yxwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6678 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6679 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6680 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6681 vec yxwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6682 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6683 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6684 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6685 vec yxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6686 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6687 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6688 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6689 vec yxwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6690 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6691 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6692 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6693 vec yxwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6694 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6695 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6696 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6697 vec yxwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6698 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6699 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6700 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6701 vec yxwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6702 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6703 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6704 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6705 vec yxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6706 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6707 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6708 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6709 vec yxwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6710 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6711 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6712 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6713 vec yxwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6714 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6715 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6716 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6717 vec yxwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6718 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6719 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6720 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6721 vec yxwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6722 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6723 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6724 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6725 vec yxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6726 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6727 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6728 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6729 vec yxwz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6730 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6732 vec yxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6736 vec yxwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6740 vec yxwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6744 vec yxwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6748 vec yxwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6752 vec yxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6756 vec yxwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6760 vec yxwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6764 vec yxwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6768 vec yxwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6772 vec yxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6776 vec yxwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6780 vec yxwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6784 vec yxwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6788 vec yxwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6792 vec yxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6796 vec yxwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6800 vec yxwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6804 vec yxwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6808 vec yxwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6812 vec yxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6816 vec yxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6820 vec yxwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6824 vec yxwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6828 vec yxwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6832 vec yxwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6836 vec yxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6840 vec yxwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6844 vec yxwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6848 vec yxwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6852 vec yxwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6856 vec yxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6860 vec yxwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6864 vec yxwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6868 vec yxwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6872 vec yxwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6876 vec yxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6880 vec yxwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6884 vec yxwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6888 vec yxwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6892 vec yxwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6896 vec yy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6900 vec yyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6904 vec yyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6908 vec yyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6912 vec yyxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6916 vec yyxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6920 vec yyxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6924 vec yyxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6928 vec yyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6932 vec yyxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6936 vec yyxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6940 vec yyxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6944 vec yyxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6948 vec yyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6952 vec yyxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6956 vec yyxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6960 vec yyxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6964 vec yyxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6968 vec yyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6972 vec yyxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6976 vec yyxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6980 vec yyxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6984 vec yyxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6988 vec yyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6992 vec yyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6996 vec yyxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7000 vec yyxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7004 vec yyxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7008 vec yyxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7012 vec yyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7016 vec yyxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7020 vec yyxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7024 vec yyxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7028 vec yyxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7032 vec yyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7036 vec yyxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7040 vec yyxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7044 vec yyxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7048 vec yyxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7052 vec yyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7056 vec yyxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7060 vec yyxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7064 vec yyxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7068 vec yyxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7072 vec yyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7076 vec yyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7080 vec yyxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7084 vec yyxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7088 vec yyxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7092 vec yyxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7096 vec yyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7100 vec yyxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7104 vec yyxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7108 vec yyxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7112 vec yyxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7116 vec yyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7120 vec yyxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7124 vec yyxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7128 vec yyxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7132 vec yyxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7136 vec yyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7140 vec yyxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7144 vec yyxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7148 vec yyxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7152 vec yyxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7156 vec yyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7160 vec yyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7164 vec yyxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7168 vec yyxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7172 vec yyxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7176 vec yyxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7180 vec yyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7184 vec yyxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7188 vec yyxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7192 vec yyxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7196 vec yyxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7200 vec yyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7204 vec yyxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7208 vec yyxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7212 vec yyxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7216 vec yyxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7220 vec yyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7224 vec yyxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7228 vec yyxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7232 vec yyxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7236 vec yyxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7240 vec yyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7244 vec yyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7248 vec yyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7252 vec yyyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7256 vec yyyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7260 vec yyyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7264 vec yyyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7268 vec yyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7272 vec yyyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7276 vec yyyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7280 vec yyyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7284 vec yyyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7288 vec yyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7292 vec yyyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7296 vec yyyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7300 vec yyyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7304 vec yyyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7308 vec yyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7312 vec yyyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7316 vec yyyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7320 vec yyyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7324 vec yyyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7328 vec yyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7332 vec yyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7336 vec yyyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7340 vec yyyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7344 vec yyyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7348 vec yyyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7352 vec yyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7356 vec yyyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7360 vec yyyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7364 vec yyyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7368 vec yyyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7372 vec yyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7376 vec yyyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7380 vec yyyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7384 vec yyyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7388 vec yyyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7392 vec yyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7396 vec yyyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7400 vec yyyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7404 vec yyyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7408 vec yyyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7412 vec yyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7416 vec yyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7420 vec yyyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7424 vec yyyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7428 vec yyyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7432 vec yyyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7436 vec yyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7440 vec yyyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7444 vec yyyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7448 vec yyyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7452 vec yyyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7456 vec yyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7460 vec yyyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7464 vec yyyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7468 vec yyyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7472 vec yyyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7476 vec yyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7480 vec yyyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7484 vec yyyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7488 vec yyyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7492 vec yyyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7496 vec yyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7500 vec yyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7504 vec yyywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7508 vec yyywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7512 vec yyywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7516 vec yyywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7520 vec yyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7524 vec yyywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7528 vec yyywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7532 vec yyywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7536 vec yyywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7540 vec yyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7544 vec yyywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7548 vec yyywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7552 vec yyywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7556 vec yyywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7560 vec yyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7564 vec yyywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7568 vec yyywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7572 vec yyywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7576 vec yyywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7580 vec yyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7584 vec yyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7588 vec yyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7592 vec yyzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7596 vec yyzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7600 vec yyzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7604 vec yyzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7608 vec yyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7612 vec yyzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7616 vec yyzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7620 vec yyzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7624 vec yyzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7628 vec yyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7632 vec yyzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7636 vec yyzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7640 vec yyzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7644 vec yyzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7648 vec yyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7652 vec yyzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7656 vec yyzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7660 vec yyzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7664 vec yyzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7668 vec yyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7672 vec yyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7676 vec yyzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7680 vec yyzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7684 vec yyzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7688 vec yyzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7692 vec yyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7696 vec yyzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7700 vec yyzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7704 vec yyzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7708 vec yyzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7712 vec yyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7716 vec yyzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7720 vec yyzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7724 vec yyzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7728 vec yyzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7732 vec yyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7736 vec yyzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7740 vec yyzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7744 vec yyzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7748 vec yyzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7752 vec yyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7756 vec yyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7760 vec yyzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7764 vec yyzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7768 vec yyzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7772 vec yyzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7776 vec yyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7780 vec yyzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7784 vec yyzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7788 vec yyzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7792 vec yyzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7796 vec yyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7800 vec yyzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7804 vec yyzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7808 vec yyzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7812 vec yyzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7816 vec yyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7820 vec yyzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7824 vec yyzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7828 vec yyzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7832 vec yyzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7836 vec yyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7840 vec yyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7844 vec yyzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7848 vec yyzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7852 vec yyzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7856 vec yyzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7860 vec yyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7864 vec yyzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7868 vec yyzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7872 vec yyzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7876 vec yyzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7880 vec yyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7884 vec yyzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7888 vec yyzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7892 vec yyzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7896 vec yyzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7900 vec yyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7904 vec yyzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7908 vec yyzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7912 vec yyzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7916 vec yyzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7920 vec yyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7924 vec yywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7928 vec yywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7932 vec yywxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7936 vec yywxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7940 vec yywxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7944 vec yywxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7948 vec yywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7952 vec yywxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7956 vec yywxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7960 vec yywxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7964 vec yywxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7968 vec yywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7972 vec yywxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7976 vec yywxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7980 vec yywxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7984 vec yywxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7988 vec yywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7992 vec yywxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7996 vec yywxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8000 vec yywxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8004 vec yywxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8008 vec yywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8012 vec yywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8016 vec yywyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8020 vec yywyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8024 vec yywyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8028 vec yywyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8032 vec yywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8036 vec yywyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8040 vec yywyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8044 vec yywyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8048 vec yywyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8052 vec yywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8056 vec yywyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8060 vec yywyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8064 vec yywyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8068 vec yywyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8072 vec yywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8076 vec yywywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8080 vec yywywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8084 vec yywywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8088 vec yywyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8092 vec yywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8096 vec yywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8100 vec yywzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8104 vec yywzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8108 vec yywzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8112 vec yywzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8116 vec yywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8120 vec yywzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8124 vec yywzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8128 vec yywzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8132 vec yywzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8136 vec yywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8140 vec yywzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8144 vec yywzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8148 vec yywzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8152 vec yywzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8156 vec yywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8160 vec yywzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8164 vec yywzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8168 vec yywzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8172 vec yywzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8176 vec yyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8180 vec yywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8184 vec yywwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8188 vec yywwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8192 vec yywwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8196 vec yywwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8200 vec yywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8204 vec yywwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8208 vec yywwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8212 vec yywwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8216 vec yywwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8220 vec yywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8224 vec yywwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8228 vec yywwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8232 vec yywwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8236 vec yywwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8240 vec yywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8244 vec yywwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8248 vec yywwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8252 vec yywwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8256 vec yywwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8260 vec yz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8264 vec yz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8265 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8266 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8267 vec yzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8268 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8269 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8270 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8271 vec yzx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8272 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8273 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8274 vec yzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8275 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8276 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8277 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8278 vec yzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8279 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8280 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8281 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8282 vec yzxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8283 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8284 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8285 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8286 vec yzxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8287 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8288 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8289 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8290 vec yzxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8291 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8292 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8293 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8294 vec yzxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8295 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8296 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8297 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8298 vec yzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8299 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8300 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8301 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8302 vec yzxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8303 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8304 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8305 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8306 vec yzxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8307 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8308 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8309 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8310 vec yzxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8311 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8312 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8313 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8314 vec yzxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8315 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8316 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8317 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8318 vec yzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8319 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8320 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8321 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8322 vec yzxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8323 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8324 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8325 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8326 vec yzxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8327 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8328 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8329 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8330 vec yzxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8331 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8332 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8333 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8334 vec yzxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8335 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8336 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8337 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8338 vec yzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8339 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8340 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8341 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8342 vec yzxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8343 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8344 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8345 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8346 vec yzxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8347 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8348 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8349 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8350 vec yzxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8351 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8352 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8353 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8354 vec yzxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8355 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8356 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8357 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8358 vec yzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8359 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8360 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8361 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8362 vec yzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8363 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8364 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8365 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8366 vec yzxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8367 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8368 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8369 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8370 vec yzxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8371 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8372 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8373 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8374 vec yzxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8375 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8376 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8377 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8378 vec yzxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8379 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8380 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8381 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8382 vec yzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8383 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8384 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8385 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8386 vec yzxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8387 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8388 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8389 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8390 vec yzxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8391 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8392 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8393 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8394 vec yzxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8395 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8396 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8397 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8398 vec yzxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8399 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8400 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8401 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8402 vec yzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8403 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8404 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8405 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8406 vec yzxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8407 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8408 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8409 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8410 vec yzxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8411 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8412 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8413 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8414 vec yzxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8415 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8416 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8417 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8418 vec yzxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8419 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8420 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8421 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8422 vec yzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8423 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8424 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8425 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8426 vec yzxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8427 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8428 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8429 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8430 vec yzxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8431 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8432 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8433 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8434 vec yzxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8435 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8436 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8437 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8438 vec yzxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8439 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8440 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8441 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8442 vec yzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8443 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8444 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8445 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8446 vec yzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8447 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8448 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8449 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8450 vec yzxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8451 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8452 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8453 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8454 vec yzxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8455 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8456 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8457 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8458 vec yzxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8459 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8460 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8461 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8462 vec yzxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8463 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8464 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8465 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8466 vec yzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8467 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8468 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8469 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8470 vec yzxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8471 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8472 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8473 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8474 vec yzxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8475 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8476 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8477 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8478 vec yzxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8479 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8480 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8481 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8482 vec yzxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8483 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8484 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8485 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8486 vec yzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8487 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8488 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8489 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8490 vec yzxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8491 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8492 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8493 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8494 vec yzxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8495 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8496 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8497 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8498 vec yzxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8499 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8500 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8501 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8502 vec yzxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8503 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8504 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8505 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8506 vec yzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8507 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8508 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8509 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8510 vec yzxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8511 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8512 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8513 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8514 vec yzxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8515 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8516 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8517 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8518 vec yzxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8519 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8520 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8521 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8522 vec yzxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8523 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8524 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8526 vec yzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8530 vec yzxw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8531 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8532 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8533 vec yzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8534 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8535 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8536 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8537 vec yzxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8538 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8539 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8540 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8541 vec yzxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8542 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8543 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8544 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8545 vec yzxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8546 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8547 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8548 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8549 vec yzxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8550 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8551 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8552 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8553 vec yzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8554 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8555 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8556 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8557 vec yzxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8558 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8559 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8560 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8561 vec yzxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8562 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8563 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8564 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8565 vec yzxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8566 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8567 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8568 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8569 vec yzxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8570 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8571 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8572 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8573 vec yzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8574 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8575 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8576 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8577 vec yzxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8578 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8579 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8580 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8581 vec yzxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8582 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8583 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8584 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8585 vec yzxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8586 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8587 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8588 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8589 vec yzxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8590 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8591 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8592 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8593 vec yzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8594 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8595 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8596 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8597 vec yzxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8598 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8599 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8600 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8601 vec yzxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8602 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8603 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8604 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8605 vec yzxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8606 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8607 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8608 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8609 vec yzxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8610 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8611 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8612 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8613 vec yzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8614 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8615 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8616 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8617 vec yzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8618 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8619 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8620 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8621 vec yzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8622 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8623 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8624 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8625 vec yzyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8626 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8627 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8628 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8629 vec yzyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8630 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8631 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8632 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8633 vec yzyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8634 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8635 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8636 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8637 vec yzyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8638 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8639 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8640 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8641 vec yzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8642 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8643 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8644 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8645 vec yzyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8646 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8647 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8648 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8649 vec yzyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8650 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8651 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8652 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8653 vec yzyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8654 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8655 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8656 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8657 vec yzyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8658 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8659 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8660 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8661 vec yzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8662 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8663 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8664 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8665 vec yzyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8666 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8667 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8668 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8669 vec yzyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8670 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8671 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8672 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8673 vec yzyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8674 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8675 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8676 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8677 vec yzyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8678 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8679 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8680 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8681 vec yzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8682 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8683 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8684 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8685 vec yzyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8686 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8687 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8688 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8689 vec yzyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8690 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8691 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8692 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8693 vec yzyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8694 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8695 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8696 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8697 vec yzyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8698 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8699 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8700 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8701 vec yzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8702 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8703 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8704 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8705 vec yzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8706 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8707 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8708 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8709 vec yzyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8710 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8711 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8712 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8713 vec yzyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8714 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8715 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8716 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8717 vec yzyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8718 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8719 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8720 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8721 vec yzyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8722 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8723 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8724 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8725 vec yzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8726 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8727 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8728 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8729 vec yzyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8730 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8731 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8732 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8733 vec yzyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8734 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8735 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8736 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8737 vec yzyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8738 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8739 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8740 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8741 vec yzyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8742 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8743 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8744 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8745 vec yzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8746 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8747 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8748 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8749 vec yzyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8750 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8751 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8752 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8753 vec yzyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8754 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8755 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8756 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8757 vec yzyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8758 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8759 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8760 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8761 vec yzyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8762 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8763 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8764 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8765 vec yzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8766 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8767 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8768 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8769 vec yzyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8770 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8771 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8772 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8773 vec yzyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8774 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8775 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8776 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8777 vec yzyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8778 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8779 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8780 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8781 vec yzyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8782 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8783 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8784 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8785 vec yzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8786 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8787 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8788 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8789 vec yzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8790 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8791 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8792 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8793 vec yzyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8794 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8795 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8796 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8797 vec yzyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8798 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8799 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8800 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8801 vec yzyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8802 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8803 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8804 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8805 vec yzyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8806 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8807 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8808 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8809 vec yzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8810 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8811 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8812 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8813 vec yzyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8814 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8815 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8816 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8817 vec yzyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8818 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8819 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8820 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8821 vec yzyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8822 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8823 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8824 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8825 vec yzyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8826 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8827 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8828 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8829 vec yzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8830 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8831 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8832 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8833 vec yzyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8834 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8835 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8836 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8837 vec yzyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8838 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8839 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8840 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8841 vec yzyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8842 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8843 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8844 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8845 vec yzyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8846 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8847 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8848 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8849 vec yzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8850 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8851 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8852 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8853 vec yzyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8854 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8855 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8856 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8857 vec yzyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8858 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8859 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8860 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8861 vec yzyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8862 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8863 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8864 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8865 vec yzyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8866 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8867 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8868 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8869 vec yzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8870 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8871 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8872 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8873 vec yzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8874 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8875 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8876 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8877 vec yzywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8878 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8879 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8880 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8881 vec yzywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8882 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8883 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8884 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8885 vec yzywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8886 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8887 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8888 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8889 vec yzywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8890 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8891 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8892 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8893 vec yzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8894 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8895 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8896 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8897 vec yzywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8898 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8899 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8900 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8901 vec yzywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8902 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8903 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8904 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8905 vec yzywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8906 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8907 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8908 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8909 vec yzywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8910 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8911 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8912 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8913 vec yzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8914 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8915 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8916 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8917 vec yzywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8918 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8919 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8920 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8921 vec yzywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8922 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8923 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8924 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8925 vec yzywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8926 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8927 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8928 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8929 vec yzywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8930 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8931 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8932 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8933 vec yzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8934 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8935 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8936 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8937 vec yzywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8938 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8939 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8940 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8941 vec yzywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8942 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8943 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8944 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8945 vec yzywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8946 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8947 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8948 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8949 vec yzywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8950 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8951 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8952 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8953 vec yzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8954 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8955 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8956 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8957 vec yzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8958 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8959 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8960 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8961 vec yzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8962 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8963 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8964 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8965 vec yzzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8966 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8967 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8968 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8969 vec yzzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8970 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8971 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8972 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8973 vec yzzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8974 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8975 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8976 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8977 vec yzzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8978 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8979 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8980 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8981 vec yzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8982 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8983 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8984 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8985 vec yzzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8986 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8987 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8988 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8989 vec yzzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8990 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8991 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8992 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8993 vec yzzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8994 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8995 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8996 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8997 vec yzzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8998 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
8999 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9000 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9001 vec yzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9002 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9003 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9004 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9005 vec yzzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9006 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9007 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9008 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9009 vec yzzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9010 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9011 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9012 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9013 vec yzzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9014 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9015 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9016 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9017 vec yzzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9018 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9019 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9020 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9021 vec yzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9022 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9023 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9024 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9025 vec yzzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9026 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9027 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9028 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9029 vec yzzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9030 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9031 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9032 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9033 vec yzzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9034 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9035 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9036 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9037 vec yzzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9038 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9039 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9040 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9041 vec yzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9042 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9043 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9044 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9045 vec yzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9046 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9047 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9048 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9049 vec yzzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9050 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9051 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9052 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9053 vec yzzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9054 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9055 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9056 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9057 vec yzzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9058 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9059 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9060 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9061 vec yzzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9062 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9063 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9064 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9065 vec yzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9066 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9067 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9068 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9069 vec yzzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9070 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9071 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9072 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9073 vec yzzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9074 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9075 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9076 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9077 vec yzzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9078 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9079 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9080 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9081 vec yzzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9082 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9083 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9084 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9085 vec yzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9086 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9087 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9088 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9089 vec yzzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9090 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9091 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9092 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9093 vec yzzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9094 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9095 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9096 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9097 vec yzzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9098 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9099 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9100 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9101 vec yzzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9102 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9103 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9104 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9105 vec yzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9106 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9107 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9108 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9109 vec yzzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9110 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9111 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9112 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9113 vec yzzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9114 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9115 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9116 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9117 vec yzzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9118 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9119 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9120 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9121 vec yzzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9122 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9123 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9124 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9125 vec yzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9126 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9127 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9128 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9129 vec yzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9130 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9131 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9132 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9133 vec yzzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9134 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9135 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9136 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9137 vec yzzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9138 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9139 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9140 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9141 vec yzzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9142 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9143 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9145 vec yzzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9149 vec yzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9153 vec yzzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9157 vec yzzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9161 vec yzzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9165 vec yzzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9169 vec yzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9173 vec yzzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9177 vec yzzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9181 vec yzzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9185 vec yzzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9189 vec yzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9193 vec yzzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9197 vec yzzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9201 vec yzzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9205 vec yzzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9209 vec yzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9213 vec yzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9217 vec yzzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9221 vec yzzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9225 vec yzzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9229 vec yzzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9233 vec yzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9237 vec yzzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9241 vec yzzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9245 vec yzzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9249 vec yzzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9253 vec yzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9257 vec yzzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9261 vec yzzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9265 vec yzzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9269 vec yzzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9273 vec yzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9277 vec yzzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9281 vec yzzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9285 vec yzzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9289 vec yzzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9293 vec yzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9297 vec yzw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9298 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9300 vec yzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9304 vec yzwx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9305 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9307 vec yzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9308 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9309 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9310 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9311 vec yzwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9312 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9313 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9314 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9315 vec yzwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9316 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9317 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9318 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9319 vec yzwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9320 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9321 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9322 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9323 vec yzwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9324 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9325 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9326 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9327 vec yzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9328 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9329 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9330 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9331 vec yzwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9332 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9333 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9334 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9335 vec yzwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9336 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9337 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9339 vec yzwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9343 vec yzwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9344 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9345 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9346 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9347 vec yzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9348 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9349 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9350 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9351 vec yzwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9352 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9353 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9354 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9355 vec yzwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9356 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9357 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9358 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9359 vec yzwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9360 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9361 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9362 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9363 vec yzwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9364 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9365 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9366 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9367 vec yzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9368 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9369 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9370 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9371 vec yzwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9372 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9373 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9374 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9375 vec yzwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9376 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9377 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9378 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9379 vec yzwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9380 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9381 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9382 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9383 vec yzwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9384 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9385 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9386 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9387 vec yzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9388 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9389 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9390 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9391 vec yzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9392 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9393 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9394 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9395 vec yzwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9396 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9397 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9398 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9399 vec yzwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9400 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9401 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9402 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9403 vec yzwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9404 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9405 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9406 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9407 vec yzwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9408 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9409 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9411 vec yzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9415 vec yzwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9419 vec yzwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9423 vec yzwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9427 vec yzwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9431 vec yzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9435 vec yzwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9439 vec yzwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9443 vec yzwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9447 vec yzwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9451 vec yzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9455 vec yzwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9459 vec yzwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9463 vec yzwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9467 vec yzwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9468 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9469 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9470 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9471 vec yzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9472 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9473 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9474 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9475 vec yzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9476 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9477 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9478 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9479 vec yzwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9480 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9481 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9482 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9483 vec yzwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9484 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9485 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9486 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9487 vec yzwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9488 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9489 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9490 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9491 vec yzwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9492 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9493 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9494 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9495 vec yzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9496 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9497 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9498 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9499 vec yzwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9500 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9501 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9502 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9503 vec yzwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9504 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9505 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9507 vec yzwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9511 vec yzwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9515 vec yzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9519 vec yzwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9523 vec yzwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9524 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9525 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9526 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9527 vec yzwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9528 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9529 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9530 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9531 vec yzwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9532 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9533 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9534 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9535 vec yzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9536 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9537 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9538 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9539 vec yzwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9540 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9541 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9542 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9543 vec yzwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9544 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9545 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9546 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9547 vec yzwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9548 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9549 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9550 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9551 vec yzwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9552 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9553 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9554 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9555 vec yzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9556 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9557 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9558 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9559 vec yzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9560 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9561 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9562 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9563 vec yzwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9564 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9565 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9566 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9567 vec yzwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9568 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9569 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9570 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9571 vec yzwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9572 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9573 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9574 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9575 vec yzwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9576 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9577 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9578 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9579 vec yzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9580 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9581 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9582 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9583 vec yzwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9584 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9585 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9586 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9587 vec yzwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9588 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9589 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9590 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9591 vec yzwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9592 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9593 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9595 vec yzwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9596 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9597 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9598 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9599 vec yzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9600 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9601 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9602 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9603 vec yzwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9604 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9605 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9606 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9607 vec yzwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9608 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9609 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9610 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9611 vec yzwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9612 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9613 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9614 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9615 vec yzwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9616 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9617 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9618 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9619 vec yzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9620 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9621 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9622 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9623 vec yzwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9624 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9625 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9626 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9627 vec yzwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9628 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9629 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9631 vec yzwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9635 vec yzwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9639 vec yw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9643 vec yw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9644 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9645 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9646 vec ywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9647 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9648 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9649 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9650 vec ywx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9651 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9652 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9653 vec ywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9654 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9655 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9656 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9657 vec ywxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9658 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9659 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9660 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9661 vec ywxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9662 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9663 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9664 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9665 vec ywxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9666 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9667 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9668 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9669 vec ywxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9670 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9671 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9672 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9673 vec ywxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9674 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9675 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9676 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9677 vec ywxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9678 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9679 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9680 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9681 vec ywxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9682 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9683 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9684 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9685 vec ywxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9686 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9687 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9688 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9689 vec ywxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9690 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9691 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9692 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9693 vec ywxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9694 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9695 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9696 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9697 vec ywxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9698 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9699 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9700 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9701 vec ywxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9702 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9703 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9704 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9705 vec ywxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9706 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9707 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9708 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9709 vec ywxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9710 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9711 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9712 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9713 vec ywxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9714 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9715 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9716 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9717 vec ywxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9718 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9719 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9720 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9721 vec ywxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9722 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9723 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9724 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9725 vec ywxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9726 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9727 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9728 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9729 vec ywxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9730 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9731 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9732 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9733 vec ywxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9734 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9735 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9736 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9737 vec ywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9738 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9739 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9740 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9741 vec ywxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9742 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9743 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9744 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9745 vec ywxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9746 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9747 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9748 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9749 vec ywxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9750 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9751 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9752 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9753 vec ywxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9754 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9755 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9756 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9757 vec ywxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9758 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9759 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9760 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9761 vec ywxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9762 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9763 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9764 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9765 vec ywxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9766 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9767 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9768 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9769 vec ywxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9770 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9771 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9772 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9773 vec ywxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9774 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9775 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9776 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9777 vec ywxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9778 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9779 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9780 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9781 vec ywxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9782 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9783 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9784 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9785 vec ywxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9786 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9787 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9788 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9789 vec ywxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9790 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9791 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9792 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9793 vec ywxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9794 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9795 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9796 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9797 vec ywxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9798 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9799 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9800 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9801 vec ywxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9802 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9803 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9804 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9805 vec ywxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9806 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9807 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9808 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9809 vec ywxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9810 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9811 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9812 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9813 vec ywxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9814 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9815 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9816 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9817 vec ywxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9818 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9819 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9820 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9821 vec ywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9822 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9823 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9824 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9825 vec ywxz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9826 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9828 vec ywxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9832 vec ywxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9836 vec ywxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9840 vec ywxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9844 vec ywxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9848 vec ywxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9852 vec ywxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9856 vec ywxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9860 vec ywxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9864 vec ywxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9868 vec ywxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9872 vec ywxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9876 vec ywxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9880 vec ywxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9884 vec ywxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9888 vec ywxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9892 vec ywxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9896 vec ywxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9900 vec ywxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9904 vec ywxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9908 vec ywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9912 vec ywxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9916 vec ywxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9920 vec ywxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9924 vec ywxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9928 vec ywxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9932 vec ywxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9936 vec ywxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9940 vec ywxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9944 vec ywxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9948 vec ywxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9952 vec ywxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9956 vec ywxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9960 vec ywxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9964 vec ywxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9968 vec ywxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9972 vec ywxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9976 vec ywxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9980 vec ywxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9984 vec ywxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9988 vec ywxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9992 vec ywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9996 vec ywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
9999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10000 vec ywyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10004 vec ywyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10008 vec ywyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10012 vec ywyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10016 vec ywyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10020 vec ywyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10024 vec ywyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10028 vec ywyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10032 vec ywyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10036 vec ywyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10040 vec ywyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10044 vec ywyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10048 vec ywyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10052 vec ywyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10056 vec ywyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10060 vec ywyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10064 vec ywyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10068 vec ywyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10072 vec ywyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10076 vec ywyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10080 vec ywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10084 vec ywyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10088 vec ywyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10092 vec ywyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10096 vec ywyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10100 vec ywyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10104 vec ywyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10108 vec ywyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10112 vec ywyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10116 vec ywyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10120 vec ywyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10124 vec ywyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10128 vec ywyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10132 vec ywyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10136 vec ywyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10140 vec ywyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10144 vec ywyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10148 vec ywyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10152 vec ywyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10156 vec ywyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10160 vec ywyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10164 vec ywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10168 vec ywyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10172 vec ywyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10176 vec ywyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10180 vec ywyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10184 vec ywyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10188 vec ywyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10192 vec ywyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10196 vec ywyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10200 vec ywyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10204 vec ywyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10208 vec ywyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10212 vec ywyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10216 vec ywyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10220 vec ywyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10224 vec ywyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10228 vec ywyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10232 vec ywyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10236 vec ywyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10240 vec ywyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10244 vec ywyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10248 vec ywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10252 vec ywywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10256 vec ywywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10260 vec ywywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10264 vec ywywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10268 vec ywywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10272 vec ywywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10276 vec ywywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10280 vec ywywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10284 vec ywywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10288 vec ywywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10292 vec ywywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10296 vec ywywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10300 vec ywywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10304 vec ywywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10308 vec ywywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10312 vec ywyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10316 vec ywywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10320 vec ywywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10324 vec ywywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10328 vec ywywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10332 vec ywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10336 vec ywz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10337 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10339 vec ywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10343 vec ywzx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10344 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10345 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10346 vec ywzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10347 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10348 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10349 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10350 vec ywzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10351 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10352 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10353 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10354 vec ywzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10355 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10356 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10357 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10358 vec ywzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10359 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10360 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10361 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10362 vec ywzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10363 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10364 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10365 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10366 vec ywzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10367 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10368 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10369 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10370 vec ywzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10371 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10372 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10373 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10374 vec ywzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10375 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10376 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10377 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10378 vec ywzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10379 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10380 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10381 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10382 vec ywzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10383 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10384 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10385 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10386 vec ywzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10387 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10388 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10389 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10390 vec ywzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10391 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10392 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10393 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10394 vec ywzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10395 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10396 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10397 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10398 vec ywzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10399 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10400 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10401 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10402 vec ywzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10403 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10404 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10405 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10406 vec ywzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10407 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10408 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10409 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10410 vec ywzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10411 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10412 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10413 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10414 vec ywzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10415 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10416 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10417 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10418 vec ywzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10419 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10420 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10421 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10422 vec ywzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10423 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10424 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10425 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10426 vec ywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10427 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10428 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10429 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10430 vec ywzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10431 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10432 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10433 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10434 vec ywzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10435 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10436 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10437 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10438 vec ywzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10439 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10440 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10441 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10442 vec ywzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10443 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10444 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10445 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10446 vec ywzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10447 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10448 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10449 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10450 vec ywzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10451 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10452 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10453 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10454 vec ywzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10455 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10456 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10457 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10458 vec ywzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10459 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10460 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10461 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10462 vec ywzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10463 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10464 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10465 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10466 vec ywzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10467 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10468 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10469 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10470 vec ywzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10471 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10472 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10473 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10474 vec ywzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10475 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10476 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10477 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10478 vec ywzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10479 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10480 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10481 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10482 vec ywzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10483 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10484 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10485 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10486 vec ywzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10487 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10488 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10489 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10490 vec ywzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10491 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10492 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10493 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10494 vec ywzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10495 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10496 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10497 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10498 vec ywzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10499 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10500 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10501 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10502 vec ywzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10503 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10504 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10505 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10506 vec ywzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10507 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10508 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10509 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10510 vec ywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10511 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10512 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10513 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10514 vec ywzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10515 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10516 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10517 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10518 vec ywzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10519 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10520 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10521 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10522 vec ywzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10523 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10524 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10526 vec ywzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10530 vec ywzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10531 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10532 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10533 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10534 vec ywzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10535 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10536 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10537 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10538 vec ywzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10539 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10540 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10541 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10542 vec ywzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10543 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10544 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10545 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10546 vec ywzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10547 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10548 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10549 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10550 vec ywzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10551 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10552 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10553 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10554 vec ywzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10555 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10556 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10557 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10558 vec ywzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10559 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10560 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10561 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10562 vec ywzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10563 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10564 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10565 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10566 vec ywzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10567 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10568 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10569 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10570 vec ywzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10571 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10572 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10573 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10574 vec ywzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10575 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10576 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10577 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10578 vec ywzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10579 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10580 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10581 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10582 vec ywzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10583 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10584 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10585 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10586 vec ywzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10587 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10588 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10589 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10590 vec ywzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10591 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10592 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10593 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10594 vec ywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10595 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10596 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10597 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10598 vec ywzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10599 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10600 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10601 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10602 vec ywzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10603 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10604 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10605 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10606 vec ywzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10607 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10608 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10609 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10610 vec ywzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10611 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10612 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10613 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10614 vec ywzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10615 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10616 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10617 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10618 vec ywzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10619 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10620 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10621 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10622 vec ywzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10623 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10624 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10625 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10626 vec ywzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10627 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10628 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10629 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10630 vec ywzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10631 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10632 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10633 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10634 vec ywzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10635 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10636 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10637 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10638 vec ywzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10639 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10640 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10641 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10642 vec ywzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10643 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10644 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10645 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10646 vec ywzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10647 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10648 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10649 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10650 vec ywzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10651 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10652 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10653 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10654 vec ywzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10655 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10656 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10657 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10658 vec ywzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10659 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10660 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10661 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10662 vec ywzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10663 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10664 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10665 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10666 vec ywzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10667 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10668 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10669 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10670 vec ywzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10671 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10672 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10673 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10674 vec ywzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10675 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10676 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10677 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10678 vec yww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10679 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10680 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10681 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10682 vec ywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10683 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10684 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10685 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10686 vec ywwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10687 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10688 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10689 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10690 vec ywwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10691 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10692 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10693 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10694 vec ywwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10695 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10696 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10697 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10698 vec ywwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10699 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10700 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10701 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10702 vec ywwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10703 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10704 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10705 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10706 vec ywwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10707 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10708 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10709 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10710 vec ywwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10711 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10712 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10713 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10714 vec ywwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10715 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10716 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10717 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10718 vec ywwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10719 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10720 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10721 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10722 vec ywwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10723 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10724 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10725 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10726 vec ywwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10727 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10728 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10729 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10730 vec ywwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10731 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10732 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10733 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10734 vec ywwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10735 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10736 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10737 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10738 vec ywwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10739 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10740 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10741 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10742 vec ywwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10743 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10744 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10745 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10746 vec ywwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10747 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10748 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10749 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10750 vec ywwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10751 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10752 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10753 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10754 vec ywwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10755 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10756 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10757 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10758 vec ywwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10759 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10760 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10761 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10762 vec ywwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10763 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10764 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10765 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10766 vec ywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10767 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10768 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10769 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10770 vec ywwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10771 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10772 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10773 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10774 vec ywwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10775 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10776 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10777 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10778 vec ywwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10779 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10780 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10781 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10782 vec ywwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10783 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10784 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10785 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10786 vec ywwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10787 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10788 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10789 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10790 vec ywwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10791 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10792 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10793 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10794 vec ywwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10795 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10796 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10797 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10798 vec ywwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10799 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10800 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10801 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10802 vec ywwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10803 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10804 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10805 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10806 vec ywwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10807 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10808 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10809 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10810 vec ywwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10811 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10812 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10813 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10814 vec ywwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10815 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10816 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10817 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10818 vec ywwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10819 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10820 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10821 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10822 vec ywwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10823 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10824 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10825 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10826 vec ywwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10827 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10828 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10829 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10830 vec ywwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10831 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10832 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10833 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10834 vec ywwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10835 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10836 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10838 vec ywwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10842 vec ywwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10846 vec ywwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10850 vec ywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10854 vec ywwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10858 vec ywwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10862 vec ywwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10866 vec ywwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10870 vec ywwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10871 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10872 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10873 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10874 vec ywwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10875 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10876 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10877 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10878 vec ywwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10879 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10880 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10881 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10882 vec ywwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10883 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10884 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10885 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10886 vec ywwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10887 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10888 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10890 vec ywwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10894 vec ywwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10898 vec ywwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10902 vec ywwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10903 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10904 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10905 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10906 vec ywwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10907 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10908 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10909 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10910 vec ywwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10911 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10912 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10913 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10914 vec ywwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10915 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10916 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10917 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10918 vec ywwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10919 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10920 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10921 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10922 vec ywwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10923 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10924 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10925 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10926 vec ywwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10927 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10928 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10929 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10930 vec ywwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10931 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10932 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10933 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10934 vec ywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10935 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10936 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10937 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10938 vec ywwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10939 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10940 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10941 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10942 vec ywwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10943 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10944 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10945 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10946 vec ywwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10947 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10948 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10949 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10950 vec ywwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10951 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10952 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10953 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10954 vec ywwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10955 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10956 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10957 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10958 vec ywwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10959 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10960 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10961 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10962 vec ywwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10963 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10964 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10965 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10966 vec ywwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10967 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10968 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10969 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10970 vec ywwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10971 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10972 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10973 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10974 vec ywwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10975 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10976 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10977 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10978 vec ywwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10979 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10980 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10981 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10982 vec ywwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10983 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10984 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10985 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10986 vec ywwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10987 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10988 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10989 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10990 vec ywwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10991 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10992 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10993 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10994 vec ywwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10995 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10996 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10997 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10998 vec ywwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10999 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11000 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11001 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11002 vec ywwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11003 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11004 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11005 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11006 vec ywwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11007 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11008 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11009 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11010 vec ywwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11011 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11012 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11013 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11014 vec ywwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11015 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11016 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11017 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11018 vec zx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11019 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11020 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11021 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11022 vec zx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11023 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11024 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11025 vec zxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11026 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11027 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11028 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11029 vec zxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11030 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11031 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11032 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11033 vec zxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11034 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11035 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11036 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11037 vec zxxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11038 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11039 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11040 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11041 vec zxxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11042 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11043 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11044 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11045 vec zxxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11046 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11047 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11048 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11049 vec zxxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11050 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11051 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11052 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11053 vec zxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11054 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11055 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11056 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11057 vec zxxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11058 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11059 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11060 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11061 vec zxxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11062 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11063 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11064 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11065 vec zxxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11066 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11067 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11068 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11069 vec zxxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11070 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11071 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11072 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11073 vec zxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11074 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11075 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11076 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11077 vec zxxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11078 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11079 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11080 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11081 vec zxxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11082 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11083 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11084 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11085 vec zxxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11086 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11087 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11088 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11089 vec zxxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11090 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11091 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11092 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11093 vec zxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11094 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11095 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11096 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11097 vec zxxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11098 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11099 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11100 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11101 vec zxxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11102 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11103 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11104 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11105 vec zxxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11106 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11107 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11108 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11109 vec zxxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11110 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11111 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11112 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11113 vec zxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11114 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11115 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11116 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11117 vec zxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11118 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11119 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11120 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11121 vec zxxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11122 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11123 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11124 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11125 vec zxxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11126 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11127 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11128 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11129 vec zxxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11130 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11131 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11132 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11133 vec zxxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11134 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11135 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11136 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11137 vec zxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11138 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11139 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11140 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11141 vec zxxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11142 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11143 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11145 vec zxxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11149 vec zxxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11153 vec zxxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11157 vec zxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11161 vec zxxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11165 vec zxxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11169 vec zxxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11173 vec zxxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11177 vec zxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11181 vec zxxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11185 vec zxxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11189 vec zxxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11193 vec zxxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11197 vec zxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11201 vec zxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11205 vec zxxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11209 vec zxxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11213 vec zxxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11217 vec zxxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11221 vec zxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11225 vec zxxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11229 vec zxxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11233 vec zxxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11237 vec zxxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11241 vec zxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11245 vec zxxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11249 vec zxxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11253 vec zxxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11257 vec zxxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11261 vec zxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11265 vec zxxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11269 vec zxxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11273 vec zxxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11277 vec zxxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11281 vec zxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11285 vec zxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11289 vec zxxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11293 vec zxxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11297 vec zxxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11301 vec zxxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11305 vec zxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11309 vec zxxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11313 vec zxxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11317 vec zxxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11321 vec zxxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11325 vec zxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11329 vec zxxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11333 vec zxxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11337 vec zxxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11341 vec zxxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11345 vec zxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11349 vec zxxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11353 vec zxxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11357 vec zxxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11361 vec zxxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11365 vec zxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11369 vec zxy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11370 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11372 vec zxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11376 vec zxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11380 vec zxyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11384 vec zxyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11388 vec zxyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11392 vec zxyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11396 vec zxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11400 vec zxyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11404 vec zxyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11408 vec zxyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11412 vec zxyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11416 vec zxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11420 vec zxyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11424 vec zxyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11428 vec zxyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11432 vec zxyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11436 vec zxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11440 vec zxyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11444 vec zxyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11448 vec zxyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11452 vec zxyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11456 vec zxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11460 vec zxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11464 vec zxyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11468 vec zxyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11472 vec zxyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11476 vec zxyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11480 vec zxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11484 vec zxyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11488 vec zxyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11492 vec zxyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11496 vec zxyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11500 vec zxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11504 vec zxyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11508 vec zxyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11512 vec zxyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11516 vec zxyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11520 vec zxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11524 vec zxyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11528 vec zxyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11532 vec zxyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11536 vec zxyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11540 vec zxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11544 vec zxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11548 vec zxyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11552 vec zxyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11556 vec zxyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11560 vec zxyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11564 vec zxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11568 vec zxyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11572 vec zxyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11576 vec zxyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11580 vec zxyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11584 vec zxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11588 vec zxyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11592 vec zxyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11596 vec zxyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11600 vec zxyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11604 vec zxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11608 vec zxyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11612 vec zxyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11616 vec zxyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11620 vec zxyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11624 vec zxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11628 vec zxyw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11629 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11631 vec zxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11635 vec zxywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11639 vec zxywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11643 vec zxywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11644 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11645 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11646 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11647 vec zxywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11648 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11649 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11650 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11651 vec zxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11652 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11653 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11654 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11655 vec zxywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11656 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11657 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11658 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11659 vec zxywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11660 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11661 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11662 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11663 vec zxywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11664 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11665 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11667 vec zxywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11668 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11669 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11670 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11671 vec zxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11672 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11673 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11674 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11675 vec zxywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11676 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11677 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11678 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11679 vec zxywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11680 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11681 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11682 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11683 vec zxywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11684 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11685 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11686 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11687 vec zxywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11688 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11689 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11690 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11691 vec zxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11692 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11693 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11694 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11695 vec zxywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11696 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11697 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11698 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11699 vec zxywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11700 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11701 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11702 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11703 vec zxywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11704 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11705 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11706 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11707 vec zxywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11708 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11709 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11710 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11711 vec zxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11712 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11713 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11714 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11715 vec zxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11716 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11717 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11718 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11719 vec zxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11720 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11721 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11722 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11723 vec zxzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11724 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11725 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11726 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11727 vec zxzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11728 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11729 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11730 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11731 vec zxzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11732 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11733 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11734 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11735 vec zxzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11736 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11737 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11738 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11739 vec zxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11740 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11741 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11742 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11743 vec zxzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11744 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11745 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11746 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11747 vec zxzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11748 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11749 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11750 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11751 vec zxzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11752 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11753 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11754 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11755 vec zxzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11756 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11757 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11758 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11759 vec zxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11760 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11761 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11762 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11763 vec zxzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11764 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11765 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11766 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11767 vec zxzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11768 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11769 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11770 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11771 vec zxzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11772 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11773 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11774 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11775 vec zxzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11776 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11777 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11778 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11779 vec zxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11780 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11781 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11782 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11783 vec zxzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11784 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11785 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11786 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11787 vec zxzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11788 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11789 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11790 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11791 vec zxzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11792 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11793 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11794 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11795 vec zxzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11796 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11797 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11798 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11799 vec zxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11800 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11801 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11802 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11803 vec zxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11804 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11805 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11806 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11807 vec zxzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11808 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11809 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11810 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11811 vec zxzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11812 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11813 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11814 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11815 vec zxzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11816 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11817 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11818 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11819 vec zxzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11820 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11821 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11822 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11823 vec zxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11824 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11825 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11826 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11827 vec zxzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11828 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11829 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11830 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11831 vec zxzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11832 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11833 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11834 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11835 vec zxzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11836 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11837 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11838 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11839 vec zxzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11840 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11841 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11842 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11843 vec zxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11844 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11845 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11846 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11847 vec zxzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11848 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11849 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11850 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11851 vec zxzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11852 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11853 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11854 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11855 vec zxzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11856 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11857 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11858 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11859 vec zxzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11860 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11861 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11862 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11863 vec zxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11864 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11865 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11866 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11867 vec zxzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11868 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11869 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11870 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11871 vec zxzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11872 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11873 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11874 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11875 vec zxzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11876 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11877 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11878 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11879 vec zxzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11880 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11881 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11882 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11883 vec zxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11884 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11885 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11886 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11887 vec zxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11888 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11889 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11890 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11891 vec zxzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11892 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11893 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11894 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11895 vec zxzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11896 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11897 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11898 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11899 vec zxzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11900 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11901 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11902 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11903 vec zxzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11904 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11905 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11906 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11907 vec zxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11908 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11909 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11910 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11911 vec zxzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11912 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11913 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11914 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11915 vec zxzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11916 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11917 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11918 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11919 vec zxzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11920 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11921 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11922 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11923 vec zxzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11924 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11925 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11926 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11927 vec zxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11928 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11929 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11930 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11931 vec zxzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11932 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11933 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11934 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11935 vec zxzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11936 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11937 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11938 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11939 vec zxzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11940 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11941 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11942 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11943 vec zxzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11944 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11945 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11946 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11947 vec zxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11948 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11949 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11950 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11951 vec zxzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11952 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11953 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11954 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11955 vec zxzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11956 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11957 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11958 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11959 vec zxzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11960 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11961 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11962 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11963 vec zxzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11964 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11965 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11966 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11967 vec zxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11968 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11969 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11970 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11971 vec zxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11972 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11973 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11974 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11975 vec zxzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11976 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11977 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11978 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11979 vec zxzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11980 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11981 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11982 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11983 vec zxzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11984 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11985 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11986 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11987 vec zxzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11988 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11989 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11990 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11991 vec zxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11992 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11993 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11994 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11995 vec zxzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11996 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11997 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11998 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11999 vec zxzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12000 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12001 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12002 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12003 vec zxzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12004 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12005 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12006 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12007 vec zxzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12008 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12009 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12010 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12011 vec zxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12012 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12013 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12014 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12015 vec zxzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12016 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12017 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12018 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12019 vec zxzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12020 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12021 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12022 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12023 vec zxzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12024 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12025 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12026 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12027 vec zxzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12028 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12029 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12030 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12031 vec zxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12032 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12033 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12034 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12035 vec zxzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12036 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12037 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12038 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12039 vec zxzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12040 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12041 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12042 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12043 vec zxzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12044 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12045 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12046 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12047 vec zxzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12048 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12049 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12050 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12051 vec zxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12052 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12053 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12054 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12055 vec zxw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12056 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12057 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12058 vec zxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12059 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12060 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12061 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12062 vec zxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12063 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12064 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12065 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12066 vec zxwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12067 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12068 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12069 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12070 vec zxwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12071 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12072 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12073 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12074 vec zxwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12075 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12076 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12077 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12078 vec zxwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12079 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12080 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12081 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12082 vec zxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12083 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12084 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12085 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12086 vec zxwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12087 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12088 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12089 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12090 vec zxwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12091 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12092 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12093 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12094 vec zxwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12095 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12096 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12097 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12098 vec zxwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12099 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12100 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12101 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12102 vec zxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12103 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12104 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12105 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12106 vec zxwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12107 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12108 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12109 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12110 vec zxwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12111 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12112 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12113 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12114 vec zxwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12115 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12116 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12117 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12118 vec zxwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12119 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12120 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12121 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12122 vec zxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12123 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12124 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12125 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12126 vec zxwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12127 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12128 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12129 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12130 vec zxwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12131 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12132 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12133 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12134 vec zxwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12135 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12136 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12137 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12138 vec zxwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12139 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12140 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12141 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12142 vec zxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12143 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12144 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12145 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12146 vec zxwy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12147 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12149 vec zxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12153 vec zxwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12157 vec zxwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12161 vec zxwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12165 vec zxwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12169 vec zxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12173 vec zxwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12177 vec zxwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12181 vec zxwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12185 vec zxwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12189 vec zxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12193 vec zxwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12197 vec zxwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12201 vec zxwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12205 vec zxwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12209 vec zxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12213 vec zxwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12217 vec zxwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12221 vec zxwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12225 vec zxwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12229 vec zxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12233 vec zxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12237 vec zxwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12241 vec zxwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12245 vec zxwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12249 vec zxwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12253 vec zxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12257 vec zxwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12261 vec zxwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12265 vec zxwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12269 vec zxwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12273 vec zxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12277 vec zxwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12281 vec zxwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12285 vec zxwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12289 vec zxwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12293 vec zxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12297 vec zxwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12301 vec zxwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12305 vec zxwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12309 vec zxwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12313 vec zxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12317 vec zxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12321 vec zxwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12325 vec zxwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12329 vec zxwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12333 vec zxwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12337 vec zxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12341 vec zxwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12345 vec zxwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12349 vec zxwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12353 vec zxwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12357 vec zxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12361 vec zxwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12365 vec zxwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12369 vec zxwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12370 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12371 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12372 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12373 vec zxwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12374 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12375 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12376 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12377 vec zxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12378 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12379 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12380 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12381 vec zxwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12382 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12383 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12384 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12385 vec zxwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12386 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12387 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12388 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12389 vec zxwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12390 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12391 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12392 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12393 vec zxwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12394 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12395 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12396 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12397 vec zy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12398 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12399 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12400 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12401 vec zy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12402 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12404 vec zyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12408 vec zyx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12409 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12411 vec zyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12415 vec zyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12419 vec zyxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12423 vec zyxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12427 vec zyxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12431 vec zyxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12435 vec zyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12439 vec zyxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12443 vec zyxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12447 vec zyxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12451 vec zyxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12455 vec zyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12459 vec zyxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12463 vec zyxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12467 vec zyxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12468 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12469 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12470 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12471 vec zyxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12472 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12473 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12474 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12475 vec zyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12476 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12477 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12478 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12479 vec zyxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12480 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12481 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12482 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12483 vec zyxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12484 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12485 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12486 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12487 vec zyxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12488 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12489 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12490 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12491 vec zyxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12492 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12493 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12494 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12495 vec zyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12496 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12497 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12498 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12499 vec zyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12500 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12501 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12502 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12503 vec zyxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12504 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12505 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12507 vec zyxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12511 vec zyxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12515 vec zyxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12519 vec zyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12523 vec zyxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12524 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12525 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12526 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12527 vec zyxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12528 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12529 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12530 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12531 vec zyxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12532 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12533 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12534 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12535 vec zyxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12536 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12537 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12538 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12539 vec zyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12540 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12541 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12542 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12543 vec zyxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12544 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12545 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12546 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12547 vec zyxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12548 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12549 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12550 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12551 vec zyxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12552 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12553 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12554 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12555 vec zyxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12556 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12557 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12558 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12559 vec zyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12560 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12561 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12562 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12563 vec zyxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12564 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12565 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12566 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12567 vec zyxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12568 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12569 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12570 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12571 vec zyxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12572 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12573 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12574 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12575 vec zyxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12576 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12577 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12578 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12579 vec zyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12580 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12581 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12582 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12583 vec zyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12584 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12585 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12586 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12587 vec zyxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12588 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12589 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12590 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12591 vec zyxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12592 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12593 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12595 vec zyxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12596 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12597 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12598 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12599 vec zyxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12600 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12601 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12602 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12603 vec zyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12604 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12605 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12606 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12607 vec zyxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12608 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12609 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12610 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12611 vec zyxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12612 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12613 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12614 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12615 vec zyxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12616 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12617 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12618 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12619 vec zyxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12620 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12621 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12622 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12623 vec zyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12624 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12625 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12626 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12627 vec zyxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12628 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12629 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12631 vec zyxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12635 vec zyxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12639 vec zyxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12643 vec zyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12644 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12645 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12646 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12647 vec zyxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12648 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12649 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12650 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12651 vec zyxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12652 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12653 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12654 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12655 vec zyxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12656 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12657 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12658 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12659 vec zyxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12660 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12661 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12662 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12663 vec zyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12664 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12665 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12667 vec zyxw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12668 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12669 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12670 vec zyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12671 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12672 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12673 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12674 vec zyxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12675 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12676 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12677 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12678 vec zyxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12679 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12680 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12681 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12682 vec zyxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12683 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12684 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12685 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12686 vec zyxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12687 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12688 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12689 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12690 vec zyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12691 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12692 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12693 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12694 vec zyxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12695 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12696 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12697 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12698 vec zyxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12699 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12700 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12701 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12702 vec zyxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12703 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12704 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12705 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12706 vec zyxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12707 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12708 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12709 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12710 vec zyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12711 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12712 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12713 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12714 vec zyxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12715 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12716 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12717 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12718 vec zyxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12719 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12720 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12721 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12722 vec zyxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12723 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12724 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12725 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12726 vec zyxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12727 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12728 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12729 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12730 vec zyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12731 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12732 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12733 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12734 vec zyxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12735 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12736 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12737 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12738 vec zyxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12739 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12740 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12741 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12742 vec zyxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12743 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12744 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12745 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12746 vec zyxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12747 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12748 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12749 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12750 vec zyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12751 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12752 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12753 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12754 vec zyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12755 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12756 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12757 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12758 vec zyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12759 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12760 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12761 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12762 vec zyyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12763 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12764 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12765 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12766 vec zyyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12767 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12768 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12769 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12770 vec zyyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12771 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12772 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12773 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12774 vec zyyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12775 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12776 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12777 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12778 vec zyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12779 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12780 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12781 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12782 vec zyyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12783 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12784 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12785 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12786 vec zyyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12787 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12788 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12789 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12790 vec zyyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12791 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12792 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12793 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12794 vec zyyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12795 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12796 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12797 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12798 vec zyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12799 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12800 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12801 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12802 vec zyyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12803 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12804 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12805 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12806 vec zyyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12807 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12808 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12809 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12810 vec zyyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12811 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12812 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12813 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12814 vec zyyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12815 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12816 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12817 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12818 vec zyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12819 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12820 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12821 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12822 vec zyyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12823 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12824 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12825 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12826 vec zyyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12827 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12828 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12829 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12830 vec zyyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12831 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12832 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12833 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12834 vec zyyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12835 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12836 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12838 vec zyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12842 vec zyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12846 vec zyyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12850 vec zyyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12854 vec zyyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12858 vec zyyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12862 vec zyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12866 vec zyyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12870 vec zyyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12871 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12872 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12873 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12874 vec zyyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12875 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12876 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12877 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12878 vec zyyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12879 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12880 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12881 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12882 vec zyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12883 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12884 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12885 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12886 vec zyyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12887 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12888 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12890 vec zyyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12894 vec zyyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12898 vec zyyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12902 vec zyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12903 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12904 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12905 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12906 vec zyyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12907 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12908 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12909 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12910 vec zyyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12911 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12912 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12913 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12914 vec zyyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12915 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12916 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12917 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12918 vec zyyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12919 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12920 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12921 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12922 vec zyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12923 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12924 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12925 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12926 vec zyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12927 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12928 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12929 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12930 vec zyyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12931 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12932 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12933 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12934 vec zyyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12935 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12936 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12937 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12938 vec zyyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12939 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12940 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12941 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12942 vec zyyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12943 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12944 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12945 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12946 vec zyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12947 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12948 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12949 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12950 vec zyyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12951 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12952 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12953 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12954 vec zyyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12955 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12956 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12957 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12958 vec zyyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12959 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12960 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12961 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12962 vec zyyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12963 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12964 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12965 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12966 vec zyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12967 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12968 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12969 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12970 vec zyyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12971 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12972 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12973 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12974 vec zyyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12975 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12976 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12977 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12978 vec zyyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12979 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12980 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12981 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12982 vec zyyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12983 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12984 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12985 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12986 vec zyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12987 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12988 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12989 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12990 vec zyyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12991 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12992 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12993 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12994 vec zyyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12995 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12996 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12997 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12998 vec zyyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12999 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13000 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13001 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13002 vec zyyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13003 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13004 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13005 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13006 vec zyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13007 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13008 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13009 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13010 vec zyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13011 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13012 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13013 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13014 vec zyywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13015 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13016 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13017 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13018 vec zyywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13019 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13020 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13021 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13022 vec zyywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13023 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13024 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13025 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13026 vec zyywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13027 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13028 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13029 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13030 vec zyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13031 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13032 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13033 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13034 vec zyywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13035 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13036 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13037 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13038 vec zyywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13039 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13040 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13041 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13042 vec zyywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13043 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13044 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13045 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13046 vec zyywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13047 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13048 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13049 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13050 vec zyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13051 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13052 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13053 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13054 vec zyywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13055 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13056 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13057 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13058 vec zyywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13059 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13060 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13061 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13062 vec zyywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13063 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13064 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13065 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13066 vec zyywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13067 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13068 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13069 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13070 vec zyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13071 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13072 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13073 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13074 vec zyywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13075 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13076 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13077 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13078 vec zyywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13079 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13080 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13081 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13082 vec zyywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13083 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13084 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13085 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13086 vec zyywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13087 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13088 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13089 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13090 vec zyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13091 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13092 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13093 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13094 vec zyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13095 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13096 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13097 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13098 vec zyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13099 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13100 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13101 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13102 vec zyzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13103 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13104 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13105 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13106 vec zyzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13107 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13108 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13109 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13110 vec zyzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13111 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13112 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13113 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13114 vec zyzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13115 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13116 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13117 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13118 vec zyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13119 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13120 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13121 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13122 vec zyzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13123 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13124 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13125 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13126 vec zyzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13127 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13128 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13129 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13130 vec zyzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13131 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13132 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13133 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13134 vec zyzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13135 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13136 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13137 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13138 vec zyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13139 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13140 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13141 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13142 vec zyzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13143 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13144 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13145 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13146 vec zyzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13147 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13148 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13149 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13150 vec zyzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13151 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13152 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13153 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13154 vec zyzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13155 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13156 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13157 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13158 vec zyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13159 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13160 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13161 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13162 vec zyzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13163 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13164 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13165 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13166 vec zyzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13167 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13168 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13169 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13170 vec zyzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13171 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13172 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13173 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13174 vec zyzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13175 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13176 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13177 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13178 vec zyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13179 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13180 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13181 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13182 vec zyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13183 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13184 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13185 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13186 vec zyzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13187 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13188 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13189 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13190 vec zyzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13191 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13192 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13193 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13194 vec zyzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13195 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13196 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13197 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13198 vec zyzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13199 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13200 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13201 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13202 vec zyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13203 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13204 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13205 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13206 vec zyzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13207 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13208 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13209 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13210 vec zyzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13211 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13212 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13213 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13214 vec zyzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13215 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13216 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13217 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13218 vec zyzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13219 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13220 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13221 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13222 vec zyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13223 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13224 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13225 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13226 vec zyzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13227 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13228 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13229 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13230 vec zyzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13231 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13232 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13233 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13234 vec zyzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13235 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13236 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13237 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13238 vec zyzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13239 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13240 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13241 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13242 vec zyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13243 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13244 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13245 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13246 vec zyzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13247 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13248 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13249 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13250 vec zyzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13251 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13252 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13253 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13254 vec zyzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13255 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13256 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13257 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13258 vec zyzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13259 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13260 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13261 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13262 vec zyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13263 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13264 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13265 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13266 vec zyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13267 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13268 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13269 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13270 vec zyzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13271 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13272 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13273 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13274 vec zyzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13275 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13276 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13277 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13278 vec zyzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13279 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13280 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13281 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13282 vec zyzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13283 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13284 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13285 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13286 vec zyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13287 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13288 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13289 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13290 vec zyzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13291 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13292 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13293 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13294 vec zyzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13295 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13296 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13297 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13298 vec zyzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13299 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13300 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13301 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13302 vec zyzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13303 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13304 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13305 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13306 vec zyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13307 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13308 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13309 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13310 vec zyzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13311 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13312 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13313 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13314 vec zyzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13315 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13316 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13317 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13318 vec zyzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13319 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13320 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13321 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13322 vec zyzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13323 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13324 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13325 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13326 vec zyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13327 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13328 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13329 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13330 vec zyzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13331 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13332 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13333 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13334 vec zyzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13335 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13336 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13337 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13338 vec zyzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13339 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13340 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13341 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13342 vec zyzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13343 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13344 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13345 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13346 vec zyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13347 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13348 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13349 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13350 vec zyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13351 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13352 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13353 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13354 vec zyzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13355 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13356 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13357 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13358 vec zyzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13359 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13360 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13361 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13362 vec zyzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13363 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13364 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13365 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13366 vec zyzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13367 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13368 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13369 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13370 vec zyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13371 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13372 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13373 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13374 vec zyzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13375 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13376 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13377 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13378 vec zyzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13379 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13380 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13381 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13382 vec zyzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13383 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13384 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13385 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13386 vec zyzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13387 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13388 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13389 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13390 vec zyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13391 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13392 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13393 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13394 vec zyzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13395 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13396 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13397 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13398 vec zyzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13399 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13400 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13401 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13402 vec zyzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13403 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13404 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13405 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13406 vec zyzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13407 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13408 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13409 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13410 vec zyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13411 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13412 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13413 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13414 vec zyzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13415 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13416 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13417 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13418 vec zyzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13419 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13420 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13421 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13422 vec zyzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13423 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13424 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13425 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13426 vec zyzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13427 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13428 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13429 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13430 vec zyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13431 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13432 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13433 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13434 vec zyw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13435 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13436 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13437 vec zywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13438 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13439 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13440 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13441 vec zywx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13442 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13444 vec zywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13448 vec zywxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13452 vec zywxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13456 vec zywxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13460 vec zywxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13464 vec zywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13468 vec zywxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13472 vec zywxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13476 vec zywxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13480 vec zywxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13484 vec zywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13488 vec zywxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13492 vec zywxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13496 vec zywxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13500 vec zywxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13504 vec zywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13508 vec zywxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13512 vec zywxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13516 vec zywxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13520 vec zywxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13524 vec zywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13528 vec zywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13532 vec zywyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13536 vec zywyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13540 vec zywyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13544 vec zywyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13548 vec zywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13552 vec zywyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13556 vec zywyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13560 vec zywyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13564 vec zywyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13568 vec zywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13572 vec zywyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13576 vec zywyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13580 vec zywyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13584 vec zywyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13588 vec zywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13592 vec zywywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13596 vec zywywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13600 vec zywywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13604 vec zywyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13608 vec zywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13612 vec zywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13616 vec zywzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13620 vec zywzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13624 vec zywzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13628 vec zywzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13632 vec zywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13636 vec zywzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13640 vec zywzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13644 vec zywzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13648 vec zywzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13652 vec zywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13656 vec zywzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13660 vec zywzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13664 vec zywzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13668 vec zywzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13672 vec zywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13676 vec zywzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13680 vec zywzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13684 vec zywzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13688 vec zywzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13692 vec zyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13696 vec zywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13700 vec zywwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13704 vec zywwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13708 vec zywwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13712 vec zywwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13716 vec zywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13720 vec zywwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13724 vec zywwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13728 vec zywwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13732 vec zywwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13736 vec zywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13740 vec zywwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13744 vec zywwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13748 vec zywwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13752 vec zywwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13756 vec zywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13760 vec zywwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13764 vec zywwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13768 vec zywwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13772 vec zywwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13776 vec zz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13780 vec zzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13784 vec zzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13788 vec zzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13792 vec zzxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13796 vec zzxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13800 vec zzxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13804 vec zzxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13808 vec zzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13812 vec zzxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13816 vec zzxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13820 vec zzxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13824 vec zzxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13828 vec zzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13832 vec zzxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13836 vec zzxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13840 vec zzxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13844 vec zzxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13848 vec zzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13852 vec zzxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13856 vec zzxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13860 vec zzxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13864 vec zzxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13868 vec zzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13872 vec zzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13876 vec zzxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13880 vec zzxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13884 vec zzxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13888 vec zzxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13892 vec zzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13896 vec zzxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13900 vec zzxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13904 vec zzxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13908 vec zzxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13912 vec zzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13916 vec zzxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13920 vec zzxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13924 vec zzxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13928 vec zzxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13932 vec zzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13936 vec zzxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13940 vec zzxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13944 vec zzxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13948 vec zzxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13952 vec zzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13956 vec zzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13960 vec zzxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13964 vec zzxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13968 vec zzxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13972 vec zzxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13976 vec zzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13980 vec zzxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13984 vec zzxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13988 vec zzxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13992 vec zzxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13996 vec zzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14000 vec zzxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14004 vec zzxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14008 vec zzxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14012 vec zzxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14016 vec zzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14020 vec zzxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14024 vec zzxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14028 vec zzxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14032 vec zzxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14036 vec zzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14040 vec zzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14044 vec zzxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14048 vec zzxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14052 vec zzxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14056 vec zzxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14060 vec zzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14064 vec zzxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14068 vec zzxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14072 vec zzxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14076 vec zzxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14080 vec zzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14084 vec zzxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14088 vec zzxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14092 vec zzxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14096 vec zzxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14100 vec zzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14104 vec zzxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14108 vec zzxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14112 vec zzxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14116 vec zzxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14120 vec zzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14124 vec zzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14128 vec zzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14132 vec zzyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14136 vec zzyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14140 vec zzyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14144 vec zzyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14148 vec zzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14152 vec zzyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14156 vec zzyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14160 vec zzyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14164 vec zzyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14168 vec zzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14172 vec zzyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14176 vec zzyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14180 vec zzyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14184 vec zzyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14188 vec zzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14192 vec zzyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14196 vec zzyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14200 vec zzyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14204 vec zzyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14208 vec zzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14212 vec zzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14216 vec zzyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14220 vec zzyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14224 vec zzyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14228 vec zzyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14232 vec zzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14236 vec zzyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14240 vec zzyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14244 vec zzyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14248 vec zzyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14252 vec zzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14256 vec zzyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14260 vec zzyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14264 vec zzyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14268 vec zzyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14272 vec zzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14276 vec zzyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14280 vec zzyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14284 vec zzyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14288 vec zzyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14292 vec zzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14296 vec zzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14300 vec zzyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14304 vec zzyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14308 vec zzyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14312 vec zzyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14316 vec zzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14320 vec zzyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14324 vec zzyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14328 vec zzyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14332 vec zzyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14336 vec zzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14340 vec zzyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14344 vec zzyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14348 vec zzyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14352 vec zzyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14356 vec zzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14360 vec zzyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14364 vec zzyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14368 vec zzyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14372 vec zzyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14376 vec zzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14380 vec zzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14384 vec zzywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14388 vec zzywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14392 vec zzywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14396 vec zzywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14400 vec zzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14404 vec zzywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14408 vec zzywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14412 vec zzywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14416 vec zzywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14420 vec zzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14424 vec zzywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14428 vec zzywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14432 vec zzywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14436 vec zzywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14440 vec zzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14444 vec zzywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14448 vec zzywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14452 vec zzywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14456 vec zzywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14460 vec zzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14464 vec zzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14468 vec zzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14472 vec zzzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14476 vec zzzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14480 vec zzzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14484 vec zzzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14488 vec zzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14492 vec zzzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14496 vec zzzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14500 vec zzzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14504 vec zzzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14508 vec zzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14512 vec zzzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14516 vec zzzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14520 vec zzzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14524 vec zzzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14528 vec zzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14532 vec zzzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14536 vec zzzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14540 vec zzzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14544 vec zzzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14548 vec zzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14552 vec zzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14556 vec zzzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14560 vec zzzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14564 vec zzzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14568 vec zzzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14572 vec zzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14576 vec zzzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14580 vec zzzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14584 vec zzzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14588 vec zzzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14592 vec zzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14596 vec zzzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14600 vec zzzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14604 vec zzzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14608 vec zzzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14612 vec zzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14616 vec zzzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14620 vec zzzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14624 vec zzzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14628 vec zzzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14632 vec zzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14636 vec zzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14640 vec zzzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14644 vec zzzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14648 vec zzzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14652 vec zzzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14656 vec zzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14660 vec zzzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14664 vec zzzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14668 vec zzzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14672 vec zzzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14676 vec zzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14680 vec zzzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14684 vec zzzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14688 vec zzzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14692 vec zzzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14696 vec zzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14700 vec zzzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14704 vec zzzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14708 vec zzzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14712 vec zzzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14716 vec zzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14720 vec zzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14724 vec zzzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14728 vec zzzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14732 vec zzzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14736 vec zzzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14740 vec zzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14744 vec zzzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14748 vec zzzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14752 vec zzzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14756 vec zzzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14760 vec zzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14764 vec zzzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14768 vec zzzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14772 vec zzzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14776 vec zzzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14780 vec zzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14784 vec zzzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14788 vec zzzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14792 vec zzzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14796 vec zzzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14800 vec zzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14804 vec zzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14808 vec zzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14812 vec zzwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14816 vec zzwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14820 vec zzwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14824 vec zzwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14828 vec zzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14832 vec zzwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14836 vec zzwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14840 vec zzwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14844 vec zzwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14848 vec zzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14852 vec zzwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14856 vec zzwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14860 vec zzwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14864 vec zzwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14868 vec zzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14872 vec zzwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14876 vec zzwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14880 vec zzwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14884 vec zzwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14888 vec zzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14892 vec zzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14896 vec zzwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14900 vec zzwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14904 vec zzwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14908 vec zzwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14912 vec zzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14916 vec zzwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14920 vec zzwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14924 vec zzwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14928 vec zzwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14932 vec zzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14936 vec zzwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14940 vec zzwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14944 vec zzwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14948 vec zzwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14952 vec zzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14956 vec zzwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14960 vec zzwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14964 vec zzwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14968 vec zzwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14972 vec zzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14976 vec zzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14980 vec zzwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14984 vec zzwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14988 vec zzwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14992 vec zzwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14996 vec zzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15000 vec zzwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15004 vec zzwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15008 vec zzwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15012 vec zzwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15016 vec zzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15020 vec zzwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15024 vec zzwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15028 vec zzwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15032 vec zzwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15036 vec zzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15040 vec zzwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15044 vec zzwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15048 vec zzwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15052 vec zzwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15056 vec zzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15060 vec zzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15064 vec zzwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15068 vec zzwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15072 vec zzwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15076 vec zzwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15080 vec zzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15084 vec zzwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15088 vec zzwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15092 vec zzwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15096 vec zzwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15100 vec zzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15104 vec zzwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15108 vec zzwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15112 vec zzwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15116 vec zzwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15120 vec zzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15124 vec zzwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15128 vec zzwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15132 vec zzwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15136 vec zzwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15140 vec zw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15144 vec zw(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15145 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15146 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15147 vec zwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15148 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15149 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15150 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15151 vec zwx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15152 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15153 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15154 vec zwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15155 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15156 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15157 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15158 vec zwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15159 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15160 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15161 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15162 vec zwxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15163 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15164 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15165 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15166 vec zwxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15167 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15168 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15169 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15170 vec zwxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15171 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15172 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15173 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15174 vec zwxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15175 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15176 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15177 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15178 vec zwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15179 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15180 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15181 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15182 vec zwxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15183 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15184 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15185 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15186 vec zwxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15187 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15188 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15189 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15190 vec zwxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15191 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15192 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15193 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15194 vec zwxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15195 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15196 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15197 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15198 vec zwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15199 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15200 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15201 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15202 vec zwxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15203 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15204 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15205 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15206 vec zwxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15207 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15208 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15209 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15210 vec zwxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15211 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15212 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15213 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15214 vec zwxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15215 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15216 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15217 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15218 vec zwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15219 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15220 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15221 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15222 vec zwxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15223 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15224 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15225 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15226 vec zwxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15227 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15228 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15229 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15230 vec zwxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15231 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15232 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15233 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15234 vec zwxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15235 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15236 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15237 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15238 vec zwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15239 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15240 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15241 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15242 vec zwxy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15243 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15245 vec zwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15249 vec zwxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15253 vec zwxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15257 vec zwxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15261 vec zwxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15265 vec zwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15269 vec zwxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15273 vec zwxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15277 vec zwxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15281 vec zwxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15282 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15283 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15284 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15285 vec zwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15286 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15287 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15288 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15289 vec zwxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15290 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15291 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15292 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15293 vec zwxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15294 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15295 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15296 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15297 vec zwxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15298 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15299 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15300 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15301 vec zwxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15302 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15303 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15304 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15305 vec zwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15306 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15307 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15308 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15309 vec zwxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15310 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15311 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15312 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15313 vec zwxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15314 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15315 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15316 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15317 vec zwxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15318 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15319 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15320 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15321 vec zwxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15322 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15323 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15324 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15325 vec zwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15326 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15327 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15328 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15329 vec zwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15330 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15331 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15332 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15333 vec zwxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15334 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15335 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15336 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15337 vec zwxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15338 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15339 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15340 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15341 vec zwxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15342 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15343 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15344 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15345 vec zwxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15346 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15347 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15348 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15349 vec zwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15350 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15351 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15352 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15353 vec zwxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15354 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15355 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15356 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15357 vec zwxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15358 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15359 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15360 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15361 vec zwxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15362 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15363 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15364 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15365 vec zwxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15366 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15367 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15368 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15369 vec zwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15370 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15371 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15372 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15373 vec zwxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15374 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15375 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15376 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15377 vec zwxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15378 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15379 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15380 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15381 vec zwxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15382 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15383 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15384 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15385 vec zwxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15386 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15387 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15388 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15389 vec zwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15390 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15391 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15392 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15393 vec zwxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15394 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15395 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15396 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15397 vec zwxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15398 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15399 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15400 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15401 vec zwxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15402 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15403 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15404 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15405 vec zwxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15406 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15407 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15408 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15409 vec zwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15410 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15411 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15412 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15413 vec zwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15414 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15415 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15416 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15417 vec zwxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15418 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15419 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15420 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15421 vec zwxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15422 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15423 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15424 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15425 vec zwxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15426 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15427 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15428 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15429 vec zwxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15430 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15431 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15432 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15433 vec zwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15434 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15435 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15436 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15437 vec zwxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15438 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15439 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15440 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15441 vec zwxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15442 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15443 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15444 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15445 vec zwxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15446 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15447 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15448 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15449 vec zwxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15450 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15451 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15452 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15453 vec zwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15454 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15455 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15456 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15457 vec zwxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15458 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15459 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15460 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15461 vec zwxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15462 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15463 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15464 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15465 vec zwxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15466 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15467 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15468 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15469 vec zwxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15470 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15471 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15472 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15473 vec zwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15474 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15475 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15476 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15477 vec zwxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15478 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15479 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15480 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15481 vec zwxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15482 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15483 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15484 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15485 vec zwxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15486 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15487 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15488 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15489 vec zwxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15490 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15491 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15492 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15493 vec zwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15494 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15495 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15496 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15497 vec zwy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15498 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15500 vec zwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15504 vec zwyx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15505 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15507 vec zwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15511 vec zwyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15515 vec zwyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15519 vec zwyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15523 vec zwyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15524 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15525 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15526 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15527 vec zwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15528 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15529 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15530 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15531 vec zwyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15532 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15533 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15534 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15535 vec zwyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15536 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15537 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15538 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15539 vec zwyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15540 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15541 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15542 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15543 vec zwyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15544 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15545 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15546 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15547 vec zwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15548 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15549 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15550 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15551 vec zwyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15552 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15553 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15554 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15555 vec zwyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15556 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15557 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15558 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15559 vec zwyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15560 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15561 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15562 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15563 vec zwyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15564 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15565 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15566 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15567 vec zwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15568 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15569 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15570 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15571 vec zwyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15572 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15573 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15574 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15575 vec zwyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15576 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15577 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15578 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15579 vec zwyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15580 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15581 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15582 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15583 vec zwyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15584 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15585 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15586 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15587 vec zwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15588 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15589 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15590 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15591 vec zwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15592 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15593 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15595 vec zwyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15596 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15597 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15598 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15599 vec zwyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15600 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15601 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15602 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15603 vec zwyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15604 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15605 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15606 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15607 vec zwyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15608 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15609 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15610 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15611 vec zwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15612 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15613 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15614 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15615 vec zwyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15616 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15617 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15618 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15619 vec zwyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15620 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15621 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15622 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15623 vec zwyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15624 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15625 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15626 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15627 vec zwyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15628 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15629 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15630 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15631 vec zwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15632 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15633 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15634 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15635 vec zwyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15636 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15637 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15638 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15639 vec zwyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15640 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15641 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15642 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15643 vec zwyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15644 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15645 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15646 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15647 vec zwyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15648 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15649 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15650 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15651 vec zwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15652 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15653 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15654 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15655 vec zwyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15656 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15657 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15658 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15659 vec zwyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15660 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15661 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15662 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15663 vec zwyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15664 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15665 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15666 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15667 vec zwyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15668 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15669 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15670 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15671 vec zwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15672 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15673 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15674 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15675 vec zwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15676 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15677 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15678 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15679 vec zwyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15680 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15681 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15682 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15683 vec zwyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15684 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15685 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15686 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15687 vec zwyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15688 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15689 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15690 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15691 vec zwyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15692 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15693 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15694 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15695 vec zwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15696 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15697 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15698 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15699 vec zwyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15700 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15701 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15702 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15703 vec zwyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15704 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15705 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15706 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15707 vec zwyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15708 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15709 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15710 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15711 vec zwyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15712 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15713 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15714 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15715 vec zwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15716 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15717 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15718 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15719 vec zwyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15720 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15721 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15722 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15723 vec zwyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15724 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15725 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15726 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15727 vec zwyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15728 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15729 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15730 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15731 vec zwyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15732 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15733 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15734 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15735 vec zwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15736 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15737 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15738 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15739 vec zwyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15740 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15741 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15742 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15743 vec zwyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15744 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15745 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15746 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15747 vec zwyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15748 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15749 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15750 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15751 vec zwyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15752 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15753 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15754 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15755 vec zwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15756 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15757 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15758 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15759 vec zwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15760 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15761 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15762 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15763 vec zwywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15764 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15765 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15766 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15767 vec zwywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15768 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15769 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15770 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15771 vec zwywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15772 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15773 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15774 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15775 vec zwywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15776 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15777 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15778 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15779 vec zwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15780 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15781 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15782 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15783 vec zwywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15784 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15785 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15786 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15787 vec zwywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15788 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15789 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15790 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15791 vec zwywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15792 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15793 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15794 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15795 vec zwywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15796 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15797 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15798 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15799 vec zwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15800 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15801 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15802 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15803 vec zwywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15804 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15805 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15806 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15807 vec zwywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15808 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15809 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15810 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15811 vec zwywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15812 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15813 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15814 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15815 vec zwywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15816 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15817 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15818 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15819 vec zwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15820 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15821 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15822 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15823 vec zwywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15824 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15825 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15826 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15827 vec zwywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15828 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15829 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15830 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15831 vec zwywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15832 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15833 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15834 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15835 vec zwywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15836 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15837 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15838 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15839 vec zwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15840 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15841 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15842 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15843 vec zwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15844 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15845 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15846 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15847 vec zwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15848 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15849 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15850 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15851 vec zwzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15852 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15853 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15854 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15855 vec zwzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15856 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15857 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15858 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15859 vec zwzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15860 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15861 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15862 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15863 vec zwzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15864 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15865 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15866 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15867 vec zwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15868 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15869 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15870 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15871 vec zwzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15872 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15873 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15874 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15875 vec zwzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15876 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15877 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15878 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15879 vec zwzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15880 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15881 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15882 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15883 vec zwzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15884 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15885 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15886 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15887 vec zwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15888 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15889 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15890 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15891 vec zwzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15892 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15893 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15894 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15895 vec zwzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15896 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15897 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15898 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15899 vec zwzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15900 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15901 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15902 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15903 vec zwzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15904 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15905 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15906 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15907 vec zwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15908 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15909 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15910 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15911 vec zwzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15912 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15913 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15914 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15915 vec zwzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15916 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15917 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15918 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15919 vec zwzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15920 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15921 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15922 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15923 vec zwzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15924 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15925 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15926 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15927 vec zwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15928 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15929 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15930 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15931 vec zwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15932 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15933 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15934 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15935 vec zwzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15936 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15937 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15938 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15939 vec zwzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15940 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15941 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15942 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15943 vec zwzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15944 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15945 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15946 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15947 vec zwzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15948 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15949 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15950 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15951 vec zwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15952 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15953 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15954 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15955 vec zwzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15956 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15957 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15958 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15959 vec zwzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15960 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15961 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15962 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15963 vec zwzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15964 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15965 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15966 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15967 vec zwzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15968 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15969 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15970 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15971 vec zwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15972 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15973 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15974 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15975 vec zwzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15976 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15977 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15978 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15979 vec zwzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15980 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15981 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15982 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15983 vec zwzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15984 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15985 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15986 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15987 vec zwzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15988 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15989 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15990 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15991 vec zwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15992 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15993 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15994 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15995 vec zwzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15996 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15997 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15998 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15999 vec zwzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16000 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16001 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16002 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16003 vec zwzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16004 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16005 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16006 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16007 vec zwzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16008 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16009 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16010 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16011 vec zwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16012 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16013 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16014 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16015 vec zwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16016 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16017 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16018 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16019 vec zwzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16020 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16021 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16022 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16023 vec zwzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16024 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16025 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16026 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16027 vec zwzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16028 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16029 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16030 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16031 vec zwzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16032 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16033 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16034 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16035 vec zwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16036 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16037 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16038 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16039 vec zwzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16040 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16041 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16042 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16043 vec zwzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16044 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16045 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16046 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16047 vec zwzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16048 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16049 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16050 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16051 vec zwzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16052 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16053 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16054 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16055 vec zwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16056 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16057 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16058 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16059 vec zwzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16060 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16061 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16062 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16063 vec zwzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16064 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16065 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16066 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16067 vec zwzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16068 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16069 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16070 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16071 vec zwzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16072 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16073 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16074 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16075 vec zwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16076 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16077 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16078 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16079 vec zwzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16080 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16081 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16082 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16083 vec zwzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16084 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16085 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16086 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16087 vec zwzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16088 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16089 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16090 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16091 vec zwzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16092 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16093 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16094 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16095 vec zwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16096 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16097 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16098 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16099 vec zwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16100 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16101 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16102 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16103 vec zwzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16104 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16105 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16106 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16107 vec zwzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16108 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16109 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16110 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16111 vec zwzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16112 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16113 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16114 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16115 vec zwzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16116 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16117 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16118 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16119 vec zwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16120 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16121 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16122 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16123 vec zwzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16124 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16125 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16126 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16127 vec zwzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16128 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16129 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16130 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16131 vec zwzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16132 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16133 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16134 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16135 vec zwzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16136 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16137 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16138 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16139 vec zwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16140 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16141 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16142 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16143 vec zwzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16144 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16145 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16146 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16147 vec zwzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16148 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16149 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16150 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16151 vec zwzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16152 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16153 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16154 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16155 vec zwzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16156 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16157 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16158 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16159 vec zwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16160 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16161 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16162 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16163 vec zwzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16164 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16165 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16166 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16167 vec zwzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16168 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16169 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16170 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16171 vec zwzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16172 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16173 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16174 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16175 vec zwzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16176 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16177 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16178 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16179 vec zww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16180 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16181 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16182 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16183 vec zwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16184 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16185 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16186 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16187 vec zwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16188 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16189 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16190 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16191 vec zwwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16192 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16193 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16194 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16195 vec zwwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16196 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16197 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16198 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16199 vec zwwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16200 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16201 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16202 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16203 vec zwwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16204 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16205 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16206 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16207 vec zwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16208 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16209 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16210 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16211 vec zwwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16212 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16213 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16214 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16215 vec zwwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16216 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16217 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16218 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16219 vec zwwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16220 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16221 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16222 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16223 vec zwwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16224 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16225 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16226 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16227 vec zwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16228 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16229 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16230 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16231 vec zwwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16232 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16233 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16234 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16235 vec zwwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16236 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16237 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16238 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16239 vec zwwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16240 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16241 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16242 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16243 vec zwwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16244 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16245 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16246 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16247 vec zwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16248 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16249 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16250 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16251 vec zwwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16252 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16253 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16254 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16255 vec zwwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16256 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16257 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16258 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16259 vec zwwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16260 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16261 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16262 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16263 vec zwwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16264 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16265 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16266 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16267 vec zwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16268 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16269 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16270 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16271 vec zwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16272 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16273 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16274 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16275 vec zwwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16276 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16277 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16278 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16279 vec zwwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16280 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16281 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16282 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16283 vec zwwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16284 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16285 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16286 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16287 vec zwwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16288 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16289 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16290 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16291 vec zwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16292 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16293 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16294 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16295 vec zwwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16296 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16297 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16298 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16299 vec zwwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16300 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16301 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16302 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16303 vec zwwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16304 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16305 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16307 vec zwwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16308 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16309 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16310 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16311 vec zwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16312 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16313 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16314 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16315 vec zwwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16316 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16317 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16318 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16319 vec zwwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16320 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16321 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16322 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16323 vec zwwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16324 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16325 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16326 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16327 vec zwwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16328 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16329 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16330 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16331 vec zwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16332 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16333 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16334 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16335 vec zwwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16336 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16337 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16339 vec zwwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16343 vec zwwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16344 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16345 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16346 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16347 vec zwwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16348 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16349 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16350 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16351 vec zwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16352 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16353 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16354 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16355 vec zwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16356 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16357 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16358 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16359 vec zwwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16360 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16361 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16362 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16363 vec zwwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16364 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16365 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16366 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16367 vec zwwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16368 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16369 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16370 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16371 vec zwwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16372 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16373 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16374 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16375 vec zwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16376 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16377 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16378 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16379 vec zwwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16380 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16381 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16382 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16383 vec zwwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16384 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16385 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16386 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16387 vec zwwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16388 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16389 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16390 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16391 vec zwwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16392 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16393 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16394 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16395 vec zwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16396 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16397 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16398 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16399 vec zwwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16400 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16401 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16402 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16403 vec zwwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16404 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16405 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16406 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16407 vec zwwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16408 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16409 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16411 vec zwwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16415 vec zwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16419 vec zwwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16423 vec zwwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16427 vec zwwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16431 vec zwwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16435 vec zwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16439 vec zwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16443 vec zwwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16447 vec zwwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16451 vec zwwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16455 vec zwwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16459 vec zwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16463 vec zwwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16467 vec zwwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16468 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16469 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16470 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16471 vec zwwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16472 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16473 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16474 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16475 vec zwwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16476 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16477 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16478 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16479 vec zwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16480 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16481 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16482 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16483 vec zwwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16484 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16485 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16486 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16487 vec zwwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16488 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16489 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16490 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16491 vec zwwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16492 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16493 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16494 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16495 vec zwwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16496 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16497 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16498 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16499 vec zwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16500 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16501 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16502 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16503 vec zwwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16504 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16505 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16507 vec zwwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16511 vec zwwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16515 vec zwwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16519 vec wx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16523 vec wx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16524 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16526 vec wxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16530 vec wxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16531 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16532 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16533 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16534 vec wxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16535 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16536 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16537 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16538 vec wxxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16539 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16540 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16541 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16542 vec wxxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16543 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16544 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16545 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16546 vec wxxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16547 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16548 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16549 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16550 vec wxxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16551 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16552 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16553 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16554 vec wxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16555 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16556 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16557 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16558 vec wxxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16559 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16560 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16561 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16562 vec wxxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16563 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16564 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16565 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16566 vec wxxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16567 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16568 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16569 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16570 vec wxxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16571 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16572 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16573 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16574 vec wxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16575 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16576 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16577 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16578 vec wxxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16579 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16580 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16581 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16582 vec wxxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16583 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16584 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16585 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16586 vec wxxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16587 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16588 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16589 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16590 vec wxxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16591 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16592 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16593 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16594 vec wxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16595 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16596 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16597 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16598 vec wxxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16599 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16600 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16601 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16602 vec wxxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16603 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16604 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16605 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16606 vec wxxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16607 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16608 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16609 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16610 vec wxxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16611 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16612 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16613 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16614 vec wxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16615 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16616 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16617 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16618 vec wxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16619 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16620 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16621 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16622 vec wxxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16623 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16624 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16625 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16626 vec wxxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16627 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16628 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16629 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16630 vec wxxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16631 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16632 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16633 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16634 vec wxxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16635 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16636 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16637 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16638 vec wxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16639 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16640 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16641 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16642 vec wxxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16643 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16644 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16645 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16646 vec wxxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16647 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16648 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16649 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16650 vec wxxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16651 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16652 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16653 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16654 vec wxxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16655 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16656 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16657 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16658 vec wxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16659 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16660 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16661 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16662 vec wxxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16663 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16664 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16665 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16666 vec wxxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16667 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16668 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16669 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16670 vec wxxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16671 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16672 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16673 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16674 vec wxxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16675 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16676 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16677 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16678 vec wxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16679 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16680 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16681 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16682 vec wxxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16683 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16684 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16685 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16686 vec wxxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16687 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16688 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16689 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16690 vec wxxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16691 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16692 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16693 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16694 vec wxxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16695 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16696 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16697 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16698 vec wxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16699 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16700 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16701 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16702 vec wxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16703 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16704 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16705 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16706 vec wxxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16707 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16708 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16709 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16710 vec wxxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16711 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16712 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16713 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16714 vec wxxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16715 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16716 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16717 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16718 vec wxxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16719 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16720 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16721 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16722 vec wxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16723 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16724 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16725 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16726 vec wxxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16727 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16728 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16729 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16730 vec wxxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16731 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16732 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16733 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16734 vec wxxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16735 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16736 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16737 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16738 vec wxxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16739 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16740 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16741 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16742 vec wxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16743 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16744 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16745 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16746 vec wxxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16747 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16748 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16749 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16750 vec wxxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16751 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16752 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16753 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16754 vec wxxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16755 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16756 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16757 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16758 vec wxxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16759 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16760 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16761 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16762 vec wxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16763 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16764 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16765 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16766 vec wxxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16767 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16768 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16769 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16770 vec wxxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16771 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16772 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16773 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16774 vec wxxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16775 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16776 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16777 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16778 vec wxxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16779 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16780 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16781 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16782 vec wxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16783 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16784 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16785 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16786 vec wxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16787 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16788 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16789 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16790 vec wxxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16791 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16792 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16793 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16794 vec wxxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16795 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16796 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16797 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16798 vec wxxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16799 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16800 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16801 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16802 vec wxxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16803 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16804 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16805 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16806 vec wxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16807 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16808 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16809 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16810 vec wxxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16811 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16812 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16813 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16814 vec wxxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16815 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16816 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16817 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16818 vec wxxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16819 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16820 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16821 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16822 vec wxxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16823 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16824 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16825 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16826 vec wxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16827 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16828 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16829 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16830 vec wxxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16831 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16832 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16833 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16834 vec wxxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16835 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16836 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16838 vec wxxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16842 vec wxxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16846 vec wxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16850 vec wxxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16854 vec wxxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16858 vec wxxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16862 vec wxxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16866 vec wxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16870 vec wxy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16871 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16872 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16873 vec wxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16874 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16875 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16876 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16877 vec wxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16878 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16879 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16880 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16881 vec wxyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16882 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16883 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16884 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16885 vec wxyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16886 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16887 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16888 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16889 vec wxyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16890 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16891 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16892 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16893 vec wxyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16894 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16895 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16896 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16897 vec wxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16898 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16899 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16900 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16901 vec wxyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16902 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16903 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16904 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16905 vec wxyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16906 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16907 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16908 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16909 vec wxyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16910 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16911 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16912 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16913 vec wxyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16914 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16915 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16916 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16917 vec wxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16918 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16919 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16920 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16921 vec wxyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16922 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16923 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16924 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16925 vec wxyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16926 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16927 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16928 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16929 vec wxyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16930 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16931 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16932 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16933 vec wxyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16934 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16935 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16936 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16937 vec wxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16938 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16939 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16940 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16941 vec wxyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16942 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16943 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16944 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16945 vec wxyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16946 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16947 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16948 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16949 vec wxyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16950 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16951 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16952 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16953 vec wxyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16954 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16955 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16956 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16957 vec wxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16958 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16959 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16960 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16961 vec wxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16962 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16963 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16964 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16965 vec wxyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16966 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16967 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16968 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16969 vec wxyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16970 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16971 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16972 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16973 vec wxyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16974 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16975 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16976 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16977 vec wxyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16978 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16979 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16980 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16981 vec wxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16982 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16983 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16984 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16985 vec wxyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16986 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16987 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16988 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16989 vec wxyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16990 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16991 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16992 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16993 vec wxyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16994 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16995 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16996 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16997 vec wxyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16998 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
16999 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17000 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17001 vec wxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17002 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17003 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17004 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17005 vec wxyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17006 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17007 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17008 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17009 vec wxyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17010 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17011 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17012 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17013 vec wxyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17014 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17015 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17016 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17017 vec wxyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17018 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17019 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17020 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17021 vec wxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17022 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17023 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17024 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17025 vec wxyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17026 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17027 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17028 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17029 vec wxyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17030 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17031 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17032 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17033 vec wxyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17034 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17035 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17036 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17037 vec wxyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17038 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17039 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17040 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17041 vec wxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17042 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17043 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17044 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17045 vec wxyz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17046 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17048 vec wxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17052 vec wxyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17056 vec wxyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17060 vec wxyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17064 vec wxyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17068 vec wxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17072 vec wxyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17076 vec wxyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17080 vec wxyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17084 vec wxyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17088 vec wxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17092 vec wxyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17096 vec wxyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17100 vec wxyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17104 vec wxyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17108 vec wxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17112 vec wxyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17116 vec wxyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17120 vec wxyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17124 vec wxyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17128 vec wxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17132 vec wxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17136 vec wxywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17140 vec wxywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17144 vec wxywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17148 vec wxywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17152 vec wxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17156 vec wxywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17160 vec wxywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17164 vec wxywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17168 vec wxywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17172 vec wxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17176 vec wxywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17180 vec wxywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17184 vec wxywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17188 vec wxywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17192 vec wxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17196 vec wxywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17200 vec wxywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17204 vec wxywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17208 vec wxywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17212 vec wxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17216 vec wxz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17217 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17218 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17219 vec wxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17220 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17221 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17222 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17223 vec wxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17224 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17225 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17226 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17227 vec wxzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17228 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17229 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17230 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17231 vec wxzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17232 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17233 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17234 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17235 vec wxzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17236 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17237 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17238 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17239 vec wxzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17240 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17241 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17242 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17243 vec wxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17244 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17245 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17246 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17247 vec wxzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17248 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17249 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17250 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17251 vec wxzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17252 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17253 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17254 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17255 vec wxzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17256 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17257 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17258 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17259 vec wxzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17260 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17261 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17262 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17263 vec wxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17264 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17265 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17266 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17267 vec wxzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17268 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17269 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17270 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17271 vec wxzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17272 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17273 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17274 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17275 vec wxzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17276 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17277 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17278 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17279 vec wxzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17280 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17281 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17282 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17283 vec wxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17284 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17285 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17286 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17287 vec wxzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17288 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17289 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17290 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17291 vec wxzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17292 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17293 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17294 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17295 vec wxzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17296 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17297 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17298 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17299 vec wxzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17300 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17301 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17302 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17303 vec wxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17304 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17305 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17307 vec wxzy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17308 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17309 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17310 vec wxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17311 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17312 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17313 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17314 vec wxzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17315 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17316 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17317 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17318 vec wxzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17319 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17320 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17321 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17322 vec wxzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17323 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17324 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17325 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17326 vec wxzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17327 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17328 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17329 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17330 vec wxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17331 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17332 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17333 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17334 vec wxzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17335 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17336 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17337 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17338 vec wxzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17339 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17340 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17341 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17342 vec wxzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17343 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17344 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17345 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17346 vec wxzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17347 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17348 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17349 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17350 vec wxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17351 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17352 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17353 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17354 vec wxzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17355 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17356 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17357 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17358 vec wxzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17359 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17360 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17361 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17362 vec wxzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17363 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17364 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17365 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17366 vec wxzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17367 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17368 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17369 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17370 vec wxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17371 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17372 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17373 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17374 vec wxzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17375 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17376 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17377 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17378 vec wxzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17379 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17380 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17381 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17382 vec wxzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17383 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17384 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17385 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17386 vec wxzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17387 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17388 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17389 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17390 vec wxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17391 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17392 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17393 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17394 vec wxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17395 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17396 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17397 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17398 vec wxzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17399 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17400 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17401 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17402 vec wxzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17403 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17404 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17405 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17406 vec wxzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17407 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17408 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17409 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17410 vec wxzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17411 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17412 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17413 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17414 vec wxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17415 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17416 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17417 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17418 vec wxzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17419 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17420 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17421 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17422 vec wxzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17423 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17424 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17425 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17426 vec wxzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17427 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17428 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17429 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17430 vec wxzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17431 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17432 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17433 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17434 vec wxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17435 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17436 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17437 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17438 vec wxzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17439 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17440 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17441 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17442 vec wxzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17443 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17444 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17445 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17446 vec wxzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17447 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17448 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17449 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17450 vec wxzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17451 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17452 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17453 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17454 vec wxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17455 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17456 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17457 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17458 vec wxzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17459 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17460 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17461 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17462 vec wxzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17463 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17464 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17465 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17466 vec wxzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17467 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17468 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17469 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17470 vec wxzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17471 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17472 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17473 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17474 vec wxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17475 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17476 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17477 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17478 vec wxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17479 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17480 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17481 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17482 vec wxzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17483 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17484 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17485 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17486 vec wxzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17487 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17488 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17489 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17490 vec wxzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17491 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17492 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17493 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17494 vec wxzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17495 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17496 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17497 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17498 vec wxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17499 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17500 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17501 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17502 vec wxzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17503 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17504 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17505 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17506 vec wxzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17507 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17508 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17509 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17510 vec wxzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17511 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17512 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17513 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17514 vec wxzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17515 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17516 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17517 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17518 vec wxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17519 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17520 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17521 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17522 vec wxzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17523 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17524 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17526 vec wxzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17530 vec wxzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17531 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17532 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17533 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17534 vec wxzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17535 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17536 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17537 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17538 vec wxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17539 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17540 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17541 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17542 vec wxzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17543 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17544 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17545 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17546 vec wxzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17547 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17548 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17549 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17550 vec wxzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17551 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17552 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17553 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17554 vec wxzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17555 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17556 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17557 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17558 vec wxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17559 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17560 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17561 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17562 vec wxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17563 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17564 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17565 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17566 vec wxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17567 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17568 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17569 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17570 vec wxwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17571 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17572 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17573 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17574 vec wxwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17575 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17576 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17577 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17578 vec wxwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17579 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17580 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17581 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17582 vec wxwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17583 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17584 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17585 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17586 vec wxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17587 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17588 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17589 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17590 vec wxwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17591 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17592 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17593 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17594 vec wxwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17595 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17596 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17597 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17598 vec wxwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17599 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17600 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17601 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17602 vec wxwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17603 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17604 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17605 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17606 vec wxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17607 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17608 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17609 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17610 vec wxwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17611 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17612 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17613 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17614 vec wxwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17615 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17616 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17617 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17618 vec wxwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17619 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17620 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17621 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17622 vec wxwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17623 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17624 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17625 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17626 vec wxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17627 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17628 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17629 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17630 vec wxwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17631 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17632 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17633 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17634 vec wxwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17635 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17636 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17637 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17638 vec wxwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17639 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17640 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17641 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17642 vec wxwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17643 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17644 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17645 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17646 vec wxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17647 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17648 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17649 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17650 vec wxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17651 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17652 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17653 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17654 vec wxwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17655 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17656 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17657 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17658 vec wxwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17659 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17660 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17661 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17662 vec wxwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17663 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17664 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17665 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17666 vec wxwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17667 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17668 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17669 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17670 vec wxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17671 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17672 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17673 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17674 vec wxwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17675 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17676 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17677 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17678 vec wxwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17679 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17680 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17681 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17682 vec wxwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17683 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17684 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17685 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17686 vec wxwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17687 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17688 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17689 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17690 vec wxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17691 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17692 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17693 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17694 vec wxwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17695 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17696 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17697 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17698 vec wxwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17699 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17700 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17701 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17702 vec wxwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17703 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17704 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17705 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17706 vec wxwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17707 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17708 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17709 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17710 vec wxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17711 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17712 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17713 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17714 vec wxwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17715 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17716 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17717 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17718 vec wxwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17719 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17720 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17721 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17722 vec wxwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17723 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17724 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17725 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17726 vec wxwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17727 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17728 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17729 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17730 vec wxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17731 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17732 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17733 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17734 vec wxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17735 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17736 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17737 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17738 vec wxwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17739 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17740 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17741 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17742 vec wxwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17743 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17744 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17745 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17746 vec wxwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17747 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17748 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17749 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17750 vec wxwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17751 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17752 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17753 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17754 vec wxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17755 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17756 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17757 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17758 vec wxwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17759 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17760 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17761 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17762 vec wxwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17763 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17764 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17765 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17766 vec wxwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17767 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17768 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17769 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17770 vec wxwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17771 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17772 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17773 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17774 vec wxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17775 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17776 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17777 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17778 vec wxwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17779 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17780 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17781 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17782 vec wxwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17783 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17784 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17785 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17786 vec wxwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17787 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17788 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17789 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17790 vec wxwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17791 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17792 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17793 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17794 vec wxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17795 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17796 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17797 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17798 vec wxwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17799 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17800 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17801 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17802 vec wxwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17803 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17804 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17805 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17806 vec wxwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17807 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17808 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17809 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17810 vec wxwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17811 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17812 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17813 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17814 vec wxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17815 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17816 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17817 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17818 vec wxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17819 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17820 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17821 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17822 vec wxwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17823 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17824 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17825 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17826 vec wxwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17827 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17828 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17829 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17830 vec wxwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17831 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17832 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17833 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17834 vec wxwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17835 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17836 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17837 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17838 vec wxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17839 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17840 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17841 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17842 vec wxwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17843 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17844 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17845 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17846 vec wxwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17847 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17848 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17849 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17850 vec wxwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17851 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17852 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17853 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17854 vec wxwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17855 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17856 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17857 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17858 vec wxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17859 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17860 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17861 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17862 vec wxwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17863 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17864 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17865 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17866 vec wxwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17867 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17868 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17869 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17870 vec wxwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17871 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17872 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17873 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17874 vec wxwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17875 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17876 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17877 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17878 vec wxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17879 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17880 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17881 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17882 vec wxwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17883 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17884 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17885 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17886 vec wxwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17887 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17888 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17889 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17890 vec wxwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17891 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17892 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17893 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17894 vec wxwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17895 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17896 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17897 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17898 vec wy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17899 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17900 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17901 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17902 vec wy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17903 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17904 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17905 vec wyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17906 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17907 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17908 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17909 vec wyx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17910 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17912 vec wyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17916 vec wyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17920 vec wyxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17924 vec wyxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17928 vec wyxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17932 vec wyxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17936 vec wyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17940 vec wyxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17944 vec wyxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17948 vec wyxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17952 vec wyxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17956 vec wyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17960 vec wyxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17964 vec wyxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17968 vec wyxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17972 vec wyxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17976 vec wyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17980 vec wyxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17984 vec wyxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17988 vec wyxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17992 vec wyxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17996 vec wyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18000 vec wyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18004 vec wyxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18008 vec wyxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18012 vec wyxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18016 vec wyxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18020 vec wyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18024 vec wyxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18028 vec wyxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18032 vec wyxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18036 vec wyxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18040 vec wyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18044 vec wyxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18048 vec wyxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18052 vec wyxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18056 vec wyxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18060 vec wyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18064 vec wyxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18068 vec wyxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18072 vec wyxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18076 vec wyxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18080 vec wyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18084 vec wyxz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18085 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18086 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18087 vec wyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18088 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18089 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18090 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18091 vec wyxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18092 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18093 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18094 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18095 vec wyxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18096 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18097 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18098 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18099 vec wyxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18100 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18101 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18102 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18103 vec wyxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18104 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18105 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18106 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18107 vec wyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18108 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18109 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18110 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18111 vec wyxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18112 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18113 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18114 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18115 vec wyxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18116 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18117 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18118 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18119 vec wyxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18120 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18121 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18122 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18123 vec wyxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18124 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18125 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18126 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18127 vec wyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18128 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18129 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18130 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18131 vec wyxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18132 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18133 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18134 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18135 vec wyxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18136 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18137 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18138 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18139 vec wyxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18140 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18141 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18142 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18143 vec wyxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18144 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18145 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18146 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18147 vec wyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18148 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18149 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18150 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18151 vec wyxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18152 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18153 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18154 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18155 vec wyxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18156 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18157 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18158 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18159 vec wyxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18160 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18161 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18162 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18163 vec wyxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18164 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18165 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18166 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18167 vec wyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18168 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18169 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18170 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18171 vec wyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18172 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18173 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18174 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18175 vec wyxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18176 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18177 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18178 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18179 vec wyxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18180 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18181 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18182 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18183 vec wyxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18184 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18185 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18186 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18187 vec wyxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18188 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18189 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18190 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18191 vec wyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18192 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18193 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18194 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18195 vec wyxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18196 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18197 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18198 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18199 vec wyxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18200 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18201 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18202 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18203 vec wyxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18204 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18205 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18206 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18207 vec wyxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18208 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18209 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18210 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18211 vec wyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18212 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18213 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18214 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18215 vec wyxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18216 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18217 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18218 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18219 vec wyxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18220 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18221 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18222 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18223 vec wyxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18224 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18225 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18226 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18227 vec wyxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18228 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18229 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18230 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18231 vec wyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18232 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18233 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18234 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18235 vec wyxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18236 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18237 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18238 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18239 vec wyxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18240 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18241 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18242 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18243 vec wyxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18244 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18245 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18246 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18247 vec wyxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18248 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18249 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18250 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18251 vec wyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18252 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18253 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18254 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18255 vec wyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18256 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18257 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18258 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18259 vec wyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18260 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18261 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18262 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18263 vec wyyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18264 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18265 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18266 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18267 vec wyyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18268 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18269 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18270 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18271 vec wyyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18272 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18273 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18274 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18275 vec wyyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18276 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18277 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18278 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18279 vec wyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18280 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18281 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18282 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18283 vec wyyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18284 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18285 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18286 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18287 vec wyyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18288 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18289 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18290 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18291 vec wyyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18292 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18293 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18294 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18295 vec wyyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18296 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18297 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18298 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18299 vec wyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18300 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18301 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18302 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18303 vec wyyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18304 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18305 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18307 vec wyyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18308 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18309 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18310 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18311 vec wyyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18312 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18313 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18314 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18315 vec wyyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18316 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18317 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18318 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18319 vec wyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18320 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18321 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18322 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18323 vec wyyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18324 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18325 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18326 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18327 vec wyyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18328 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18329 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18330 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18331 vec wyyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18332 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18333 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18334 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18335 vec wyyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18336 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18337 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18339 vec wyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18343 vec wyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18344 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18345 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18346 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18347 vec wyyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18348 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18349 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18350 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18351 vec wyyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18352 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18353 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18354 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18355 vec wyyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18356 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18357 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18358 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18359 vec wyyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18360 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18361 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18362 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18363 vec wyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18364 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18365 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18366 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18367 vec wyyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18368 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18369 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18370 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18371 vec wyyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18372 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18373 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18374 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18375 vec wyyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18376 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18377 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18378 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18379 vec wyyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18380 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18381 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18382 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18383 vec wyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18384 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18385 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18386 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18387 vec wyyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18388 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18389 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18390 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18391 vec wyyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18392 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18393 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18394 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18395 vec wyyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18396 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18397 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18398 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18399 vec wyyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18400 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18401 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18402 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18403 vec wyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18404 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18405 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18406 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18407 vec wyyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18408 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18409 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18410 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18411 vec wyyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18412 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18413 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18414 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18415 vec wyyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18416 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18417 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18418 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18419 vec wyyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18420 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18421 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18422 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18423 vec wyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18424 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18425 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18426 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18427 vec wyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18428 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18429 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18430 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18431 vec wyyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18432 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18433 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18434 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18435 vec wyyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18436 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18437 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18438 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18439 vec wyyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18440 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18441 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18442 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18443 vec wyyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18444 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18445 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18446 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18447 vec wyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18448 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18449 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18450 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18451 vec wyyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18452 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18453 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18454 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18455 vec wyyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18456 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18457 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18458 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18459 vec wyyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18460 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18461 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18462 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18463 vec wyyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18464 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18465 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18466 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18467 vec wyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18468 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18469 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18470 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18471 vec wyyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18472 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18473 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18474 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18475 vec wyyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18476 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18477 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18478 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18479 vec wyyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18480 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18481 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18482 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18483 vec wyyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18484 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18485 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18486 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18487 vec wyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18488 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18489 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18490 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18491 vec wyyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18492 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18493 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18494 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18495 vec wyyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18496 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18497 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18498 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18499 vec wyyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18500 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18501 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18502 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18503 vec wyyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18504 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18505 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18506 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18507 vec wyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18508 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18509 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18510 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18511 vec wyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18512 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18513 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18514 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18515 vec wyywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18516 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18517 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18518 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18519 vec wyywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18520 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18521 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18522 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18523 vec wyywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18524 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18525 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18526 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18527 vec wyywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18528 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18529 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18530 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18531 vec wyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18532 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18533 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18534 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18535 vec wyywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18536 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18537 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18538 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18539 vec wyywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18540 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18541 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18542 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18543 vec wyywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18544 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18545 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18546 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18547 vec wyywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18548 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18549 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18550 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18551 vec wyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18552 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18553 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18554 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18555 vec wyywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18556 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18557 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18558 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18559 vec wyywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18560 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18561 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18562 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18563 vec wyywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18564 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18565 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18566 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18567 vec wyywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18568 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18569 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18570 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18571 vec wyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18572 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18573 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18574 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18575 vec wyywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18576 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18577 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18578 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18579 vec wyywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18580 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18581 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18582 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18583 vec wyywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18584 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18585 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18586 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18587 vec wyywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18588 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18589 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18590 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18591 vec wyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18592 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18593 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18594 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18595 vec wyz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18596 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18597 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18598 vec wyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18599 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18600 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18601 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18602 vec wyzx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18603 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18604 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18605 vec wyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18606 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18607 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18608 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18609 vec wyzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18610 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18611 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18612 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18613 vec wyzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18614 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18615 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18616 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18617 vec wyzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18618 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18619 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18620 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18621 vec wyzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18622 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18623 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18624 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18625 vec wyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18626 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18627 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18628 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18629 vec wyzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18630 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18631 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18632 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18633 vec wyzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18634 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18635 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18636 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18637 vec wyzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18638 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18639 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18640 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18641 vec wyzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18642 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18643 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18644 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18645 vec wyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18646 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18647 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18648 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18649 vec wyzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18650 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18651 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18652 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18653 vec wyzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18654 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18655 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18656 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18657 vec wyzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18658 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18659 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18660 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18661 vec wyzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18662 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18663 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18664 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18665 vec wyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18666 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18667 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18668 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18669 vec wyzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18670 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18671 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18672 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18673 vec wyzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18674 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18675 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18676 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18677 vec wyzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18678 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18679 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18680 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18681 vec wyzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18682 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18683 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18684 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18685 vec wyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18686 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18687 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18688 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18689 vec wyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18690 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18691 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18692 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18693 vec wyzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18694 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18695 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18696 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18697 vec wyzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18698 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18699 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18700 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18701 vec wyzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18702 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18703 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18704 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18705 vec wyzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18706 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18707 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18708 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18709 vec wyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18710 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18711 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18712 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18713 vec wyzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18714 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18715 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18716 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18717 vec wyzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18718 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18719 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18720 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18721 vec wyzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18722 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18723 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18724 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18725 vec wyzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18726 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18727 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18728 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18729 vec wyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18730 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18731 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18732 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18733 vec wyzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18734 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18735 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18736 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18737 vec wyzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18738 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18739 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18740 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18741 vec wyzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18742 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18743 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18744 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18745 vec wyzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18746 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18747 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18748 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18749 vec wyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18750 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18751 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18752 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18753 vec wyzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18754 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18755 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18756 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18757 vec wyzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18758 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18759 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18760 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18761 vec wyzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18762 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18763 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18764 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18765 vec wyzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18766 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18767 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18768 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18769 vec wyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18770 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18771 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18772 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18773 vec wyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18774 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18775 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18776 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18777 vec wyzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18778 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18779 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18780 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18781 vec wyzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18782 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18783 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18784 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18785 vec wyzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18786 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18787 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18788 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18789 vec wyzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18790 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18791 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18792 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18793 vec wyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18794 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18795 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18796 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18797 vec wyzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18798 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18799 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18800 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18801 vec wyzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18802 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18803 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18804 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18805 vec wyzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18806 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18807 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18808 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18809 vec wyzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18810 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18811 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18812 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18813 vec wyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18814 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18815 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18816 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18817 vec wyzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18818 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18819 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18820 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18821 vec wyzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18822 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18823 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18824 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18825 vec wyzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18826 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18827 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18828 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18829 vec wyzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18830 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18831 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18832 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18833 vec wyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18834 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18835 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18836 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18837 vec wyzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18838 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18839 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18840 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18841 vec wyzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18842 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18843 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18844 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18845 vec wyzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18846 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18847 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18848 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18849 vec wyzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18850 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18851 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18852 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18853 vec wyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18854 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18855 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18856 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18857 vec wyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18858 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18859 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18860 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18861 vec wyzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18862 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18863 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18864 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18865 vec wyzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18866 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18867 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18868 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18869 vec wyzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18870 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18871 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18872 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18873 vec wyzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18874 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18875 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18876 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18877 vec wyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18878 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18879 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18880 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18881 vec wyzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18882 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18883 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18884 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18885 vec wyzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18886 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18887 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18888 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18889 vec wyzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18890 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18891 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18892 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18893 vec wyzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18894 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18895 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18896 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18897 vec wyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18898 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18899 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18900 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18901 vec wyzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18902 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18903 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18904 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18905 vec wyzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18906 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18907 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18908 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18909 vec wyzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18910 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18911 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18912 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18913 vec wyzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18914 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18915 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18916 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18917 vec wyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18918 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18919 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18920 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18921 vec wyzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18922 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18923 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18924 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18925 vec wyzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18926 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18927 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18928 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18929 vec wyzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18930 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18931 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18932 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18933 vec wyzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18934 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18935 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18936 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18937 vec wyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18938 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18939 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18940 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18941 vec wywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18942 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18943 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18944 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18945 vec wywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18946 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18947 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18948 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18949 vec wywxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18950 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18951 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18952 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18953 vec wywxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18954 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18955 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18956 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18957 vec wywxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18958 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18959 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18960 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18961 vec wywxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18962 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18963 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18964 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18965 vec wywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18966 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18967 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18968 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18969 vec wywxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18970 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18971 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18972 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18973 vec wywxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18974 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18975 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18976 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18977 vec wywxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18978 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18979 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18980 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18981 vec wywxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18982 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18983 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18984 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18985 vec wywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18986 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18987 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18988 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18989 vec wywxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18990 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18991 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18992 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18993 vec wywxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18994 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18995 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18996 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18997 vec wywxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18998 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18999 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19000 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19001 vec wywxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19002 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19003 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19004 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19005 vec wywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19006 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19007 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19008 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19009 vec wywxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19010 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19011 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19012 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19013 vec wywxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19014 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19015 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19016 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19017 vec wywxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19018 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19019 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19020 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19021 vec wywxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19022 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19023 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19024 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19025 vec wywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19026 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19027 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19028 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19029 vec wywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19030 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19031 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19032 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19033 vec wywyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19034 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19035 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19036 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19037 vec wywyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19038 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19039 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19040 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19041 vec wywyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19042 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19043 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19044 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19045 vec wywyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19046 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19047 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19048 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19049 vec wywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19050 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19051 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19052 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19053 vec wywyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19054 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19055 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19056 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19057 vec wywyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19058 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19059 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19060 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19061 vec wywyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19062 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19063 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19064 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19065 vec wywyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19066 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19067 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19068 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19069 vec wywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19070 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19071 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19072 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19073 vec wywyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19074 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19075 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19076 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19077 vec wywyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19078 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19079 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19080 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19081 vec wywyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19082 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19083 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19084 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19085 vec wywyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19086 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19087 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19088 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19089 vec wywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19090 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19091 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19092 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19093 vec wywywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19094 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19095 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19096 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19097 vec wywywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19098 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19099 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19100 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19101 vec wywywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19102 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19103 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19104 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19105 vec wywyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19106 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19107 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19108 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19109 vec wywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19110 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19111 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19112 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19113 vec wywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19114 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19115 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19116 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19117 vec wywzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19118 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19119 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19120 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19121 vec wywzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19122 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19123 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19124 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19125 vec wywzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19126 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19127 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19128 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19129 vec wywzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19130 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19131 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19132 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19133 vec wywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19134 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19135 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19136 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19137 vec wywzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19138 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19139 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19140 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19141 vec wywzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19142 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19143 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19144 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19145 vec wywzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19146 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19147 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19148 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19149 vec wywzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19150 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19151 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19152 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19153 vec wywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19154 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19155 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19156 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19157 vec wywzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19158 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19159 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19160 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19161 vec wywzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19162 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19163 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19164 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19165 vec wywzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19166 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19167 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19168 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19169 vec wywzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19170 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19171 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19172 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19173 vec wywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19174 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19175 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19176 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19177 vec wywzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19178 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19179 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19180 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19181 vec wywzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19182 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19183 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19184 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19185 vec wywzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19186 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19187 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19188 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19189 vec wywzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19190 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19191 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19192 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19193 vec wyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19194 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19195 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19196 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19197 vec wywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19198 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19199 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19200 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19201 vec wywwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19202 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19203 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19204 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19205 vec wywwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19206 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19207 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19208 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19209 vec wywwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19210 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19211 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19212 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19213 vec wywwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19214 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19215 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19216 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19217 vec wywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19218 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19219 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19220 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19221 vec wywwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19222 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19223 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19224 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19225 vec wywwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19226 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19227 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19228 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19229 vec wywwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19230 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19231 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19232 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19233 vec wywwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19234 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19235 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19236 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19237 vec wywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19238 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19239 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19240 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19241 vec wywwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19242 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19243 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19244 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19245 vec wywwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19246 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19247 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19248 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19249 vec wywwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19250 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19251 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19252 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19253 vec wywwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19254 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19255 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19256 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19257 vec wywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19258 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19259 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19260 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19261 vec wywwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19262 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19263 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19264 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19265 vec wywwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19266 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19267 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19268 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19269 vec wywwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19270 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19271 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19272 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19273 vec wywwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19274 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19275 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19276 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19277 vec wz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19278 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19279 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19280 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19281 vec wz(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19282 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19284 vec wzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19288 vec wzx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19289 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19290 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19291 vec wzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19292 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19293 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19294 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19295 vec wzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19296 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19297 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19298 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19299 vec wzxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19300 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19301 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19302 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19303 vec wzxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19304 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19305 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19306 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19307 vec wzxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19308 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19309 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19310 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19311 vec wzxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19312 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19313 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19314 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19315 vec wzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19316 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19317 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19318 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19319 vec wzxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19320 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19321 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19322 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19323 vec wzxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19324 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19325 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19326 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19327 vec wzxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19328 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19329 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19330 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19331 vec wzxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19332 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19333 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19334 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19335 vec wzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19336 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19337 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19338 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19339 vec wzxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19340 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19341 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19342 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19343 vec wzxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19344 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19345 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19346 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19347 vec wzxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19348 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19349 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19350 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19351 vec wzxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19352 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19353 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19354 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19355 vec wzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19356 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19357 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19358 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19359 vec wzxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19360 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19361 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19362 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19363 vec wzxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19364 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19365 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19366 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19367 vec wzxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19368 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19369 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19370 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19371 vec wzxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19372 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19373 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19374 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19375 vec wzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19376 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19377 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19378 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19379 vec wzxy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19380 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19381 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19382 vec wzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19383 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19384 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19385 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19386 vec wzxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19387 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19388 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19389 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19390 vec wzxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19391 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19392 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19393 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19394 vec wzxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19395 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19396 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19397 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19398 vec wzxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19399 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19400 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19401 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19402 vec wzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19403 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19404 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19405 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19406 vec wzxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19407 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19408 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19409 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19410 vec wzxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19411 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19412 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19413 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19414 vec wzxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19415 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19416 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19417 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19418 vec wzxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19419 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19420 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19421 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19422 vec wzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19423 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19424 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19425 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19426 vec wzxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19427 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19428 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19429 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19430 vec wzxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19431 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19432 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19433 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19434 vec wzxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19435 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19436 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19437 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19438 vec wzxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19439 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19440 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19441 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19442 vec wzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19443 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19444 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19445 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19446 vec wzxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19447 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19448 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19449 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19450 vec wzxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19451 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19452 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19453 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19454 vec wzxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19455 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19456 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19457 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19458 vec wzxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19459 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19460 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19461 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19462 vec wzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19463 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19464 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19465 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19466 vec wzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19467 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19468 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19469 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19470 vec wzxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19471 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19472 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19473 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19474 vec wzxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19475 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19476 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19477 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19478 vec wzxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19479 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19480 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19481 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19482 vec wzxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19483 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19484 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19485 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19486 vec wzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19487 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19488 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19489 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19490 vec wzxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19491 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19492 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19493 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19494 vec wzxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19495 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19496 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19497 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19498 vec wzxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19499 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19500 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19501 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19502 vec wzxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19503 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19504 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19505 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19506 vec wzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19507 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19508 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19509 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19510 vec wzxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19511 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19512 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19513 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19514 vec wzxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19515 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19516 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19517 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19518 vec wzxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19519 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19520 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19521 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19522 vec wzxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19523 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19524 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19525 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19526 vec wzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19527 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19528 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19529 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19530 vec wzxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19531 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19532 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19533 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19534 vec wzxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19535 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19536 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19537 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19538 vec wzxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19539 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19540 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19541 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19542 vec wzxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19543 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19544 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19545 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19546 vec wzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19547 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19548 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19549 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19550 vec wzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19551 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19552 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19553 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19554 vec wzxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19555 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19556 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19557 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19558 vec wzxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19559 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19560 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19561 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19562 vec wzxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19563 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19564 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19565 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19566 vec wzxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19567 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19568 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19569 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19570 vec wzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19571 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19572 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19573 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19574 vec wzxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19575 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19576 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19577 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19578 vec wzxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19579 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19580 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19581 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19582 vec wzxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19583 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19584 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19585 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19586 vec wzxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19587 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19588 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19589 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19590 vec wzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19591 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19592 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19593 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19594 vec wzxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19595 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19596 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19597 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19598 vec wzxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19599 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19600 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19601 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19602 vec wzxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19603 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19604 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19605 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19606 vec wzxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19607 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19608 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19609 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19610 vec wzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19611 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19612 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19613 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19614 vec wzxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19615 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19616 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19617 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19618 vec wzxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19619 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19620 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19621 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19622 vec wzxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19623 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19624 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19625 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19626 vec wzxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19627 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19628 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19629 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19630 vec wzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19631 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19632 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19633 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19634 vec wzy(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19635 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19636 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19637 vec wzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19638 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19639 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19640 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19641 vec wzyx(vec inp) {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19642 return inp;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19644 vec wzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19648 vec wzyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19652 vec wzyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19656 vec wzyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19660 vec wzyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19664 vec wzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19668 vec wzyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19672 vec wzyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19676 vec wzyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19680 vec wzyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19684 vec wzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19688 vec wzyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19692 vec wzyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19696 vec wzyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19700 vec wzyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19704 vec wzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19708 vec wzyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19712 vec wzyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19716 vec wzyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19720 vec wzyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19724 vec wzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19728 vec wzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19732 vec wzyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19736 vec wzyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19740 vec wzyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19744 vec wzyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19748 vec wzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19752 vec wzyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19756 vec wzyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19760 vec wzyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19764 vec wzyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19768 vec wzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19772 vec wzyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19776 vec wzyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19780 vec wzyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19784 vec wzyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19788 vec wzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19792 vec wzyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19796 vec wzyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19800 vec wzyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19804 vec wzyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19808 vec wzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19812 vec wzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19816 vec wzyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19820 vec wzyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19824 vec wzyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19828 vec wzyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19832 vec wzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19836 vec wzyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19840 vec wzyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19844 vec wzyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19848 vec wzyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19852 vec wzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19856 vec wzyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19860 vec wzyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19864 vec wzyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19868 vec wzyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19872 vec wzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19876 vec wzyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19880 vec wzyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19884 vec wzyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19888 vec wzyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19892 vec wzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19896 vec wzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19900 vec wzywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19904 vec wzywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19908 vec wzywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19912 vec wzywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19916 vec wzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19920 vec wzywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19924 vec wzywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19928 vec wzywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19932 vec wzywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19936 vec wzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19940 vec wzywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19944 vec wzywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19948 vec wzywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19952 vec wzywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19956 vec wzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19960 vec wzywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19964 vec wzywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19968 vec wzywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19972 vec wzywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19976 vec wzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19980 vec wzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19984 vec wzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19988 vec wzzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19992 vec wzzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19996 vec wzzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
19999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20000 vec wzzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20004 vec wzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20008 vec wzzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20012 vec wzzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20016 vec wzzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20020 vec wzzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20024 vec wzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20028 vec wzzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20032 vec wzzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20036 vec wzzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20040 vec wzzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20044 vec wzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20048 vec wzzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20052 vec wzzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20056 vec wzzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20060 vec wzzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20064 vec wzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20068 vec wzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20072 vec wzzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20076 vec wzzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20080 vec wzzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20084 vec wzzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20088 vec wzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20092 vec wzzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20096 vec wzzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20100 vec wzzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20104 vec wzzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20108 vec wzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20112 vec wzzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20116 vec wzzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20120 vec wzzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20124 vec wzzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20128 vec wzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20132 vec wzzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20136 vec wzzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20140 vec wzzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20144 vec wzzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20148 vec wzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20152 vec wzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20156 vec wzzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20160 vec wzzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20164 vec wzzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20168 vec wzzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20172 vec wzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20176 vec wzzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20180 vec wzzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20184 vec wzzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20188 vec wzzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20192 vec wzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20196 vec wzzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20200 vec wzzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20204 vec wzzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20208 vec wzzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20212 vec wzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20216 vec wzzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20220 vec wzzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20224 vec wzzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20228 vec wzzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20232 vec wzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20236 vec wzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20240 vec wzzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20244 vec wzzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20248 vec wzzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20252 vec wzzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20256 vec wzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20260 vec wzzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20264 vec wzzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20268 vec wzzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20272 vec wzzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20276 vec wzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20280 vec wzzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20284 vec wzzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20288 vec wzzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20292 vec wzzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20296 vec wzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20300 vec wzzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20304 vec wzzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20308 vec wzzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20312 vec wzzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20316 vec wzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20320 vec wzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20324 vec wzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20328 vec wzwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20332 vec wzwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20336 vec wzwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20340 vec wzwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20344 vec wzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20348 vec wzwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20352 vec wzwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20356 vec wzwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20360 vec wzwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20364 vec wzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20368 vec wzwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20372 vec wzwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20376 vec wzwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20380 vec wzwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20384 vec wzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20388 vec wzwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20392 vec wzwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20396 vec wzwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20400 vec wzwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20404 vec wzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20408 vec wzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20412 vec wzwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20416 vec wzwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20420 vec wzwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20424 vec wzwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20428 vec wzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20432 vec wzwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20436 vec wzwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20440 vec wzwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20444 vec wzwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20448 vec wzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20452 vec wzwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20456 vec wzwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20460 vec wzwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20464 vec wzwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20468 vec wzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20472 vec wzwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20476 vec wzwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20480 vec wzwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20484 vec wzwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20488 vec wzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20492 vec wzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20496 vec wzwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20500 vec wzwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20504 vec wzwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20508 vec wzwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20512 vec wzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20516 vec wzwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20520 vec wzwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20524 vec wzwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20528 vec wzwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20532 vec wzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20536 vec wzwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20540 vec wzwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20544 vec wzwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20548 vec wzwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20552 vec wzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20556 vec wzwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20560 vec wzwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20564 vec wzwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20568 vec wzwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20572 vec wzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20576 vec wzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20580 vec wzwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20584 vec wzwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20588 vec wzwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20592 vec wzwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20596 vec wzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20600 vec wzwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20604 vec wzwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20608 vec wzwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20612 vec wzwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20616 vec wzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20620 vec wzwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20624 vec wzwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20628 vec wzwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20632 vec wzwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20636 vec wzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20640 vec wzwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20644 vec wzwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20648 vec wzwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20652 vec wzwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20656 vec ww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20660 vec wwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20664 vec wwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20668 vec wwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20672 vec wwxxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20676 vec wwxxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20680 vec wwxxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20684 vec wwxxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20688 vec wwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20692 vec wwxxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20696 vec wwxxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20700 vec wwxxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20704 vec wwxxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20708 vec wwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20712 vec wwxxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20716 vec wwxxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20720 vec wwxxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20724 vec wwxxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20728 vec wwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20732 vec wwxxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20736 vec wwxxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20740 vec wwxxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20744 vec wwxxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20748 vec wwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20752 vec wwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20756 vec wwxyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20760 vec wwxyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20764 vec wwxyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20768 vec wwxyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20772 vec wwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20776 vec wwxyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20780 vec wwxyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20784 vec wwxyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20788 vec wwxyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20792 vec wwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20796 vec wwxyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20800 vec wwxyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20804 vec wwxyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20808 vec wwxyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20812 vec wwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20816 vec wwxywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20820 vec wwxywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20824 vec wwxywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20828 vec wwxyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20832 vec wwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20836 vec wwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20840 vec wwxzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20844 vec wwxzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20848 vec wwxzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20852 vec wwxzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20856 vec wwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20860 vec wwxzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20864 vec wwxzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20868 vec wwxzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20872 vec wwxzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20876 vec wwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20880 vec wwxzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20884 vec wwxzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20888 vec wwxzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20892 vec wwxzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20896 vec wwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20900 vec wwxzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20904 vec wwxzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20908 vec wwxzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20912 vec wwxzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20916 vec wwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20920 vec wwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20924 vec wwxwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20928 vec wwxwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20932 vec wwxwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20936 vec wwxwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20940 vec wwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20944 vec wwxwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20948 vec wwxwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20952 vec wwxwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20956 vec wwxwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20960 vec wwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20964 vec wwxwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20968 vec wwxwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20972 vec wwxwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20976 vec wwxwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20980 vec wwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20984 vec wwxwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20988 vec wwxwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20992 vec wwxwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20996 vec wwxwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
20999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21000 vec wwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21004 vec wwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21008 vec wwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21012 vec wwyxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21016 vec wwyxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21020 vec wwyxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21021 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21022 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21023 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21024 vec wwyxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21025 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21026 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21027 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21028 vec wwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21029 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21030 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21031 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21032 vec wwyxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21033 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21034 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21035 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21036 vec wwyxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21037 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21038 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21039 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21040 vec wwyxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21041 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21042 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21043 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21044 vec wwyxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21045 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21046 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21047 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21048 vec wwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21049 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21050 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21051 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21052 vec wwyxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21053 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21054 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21055 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21056 vec wwyxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21057 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21058 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21059 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21060 vec wwyxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21061 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21062 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21063 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21064 vec wwyxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21065 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21066 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21067 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21068 vec wwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21069 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21070 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21071 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21072 vec wwyxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21073 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21074 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21075 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21076 vec wwyxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21077 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21078 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21079 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21080 vec wwyxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21081 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21082 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21083 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21084 vec wwyxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21085 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21086 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21087 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21088 vec wwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21089 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21090 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21091 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21092 vec wwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21093 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21094 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21095 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21096 vec wwyyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21097 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21098 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21099 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21100 vec wwyyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21101 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21102 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21103 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21104 vec wwyyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21105 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21106 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21107 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21108 vec wwyyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21109 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21110 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21111 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21112 vec wwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21113 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21114 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21115 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21116 vec wwyyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21117 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21118 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21119 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21120 vec wwyyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21121 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21122 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21123 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21124 vec wwyyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21125 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21126 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21127 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21128 vec wwyyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21129 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21130 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21131 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21132 vec wwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21133 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21134 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21135 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21136 vec wwyyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21137 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21138 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21139 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21140 vec wwyyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21141 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21142 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21143 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21144 vec wwyyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21145 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21146 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21147 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21148 vec wwyyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21149 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21150 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21151 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21152 vec wwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21153 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21154 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21155 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21156 vec wwyywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21157 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21158 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21159 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21160 vec wwyywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21161 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21162 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21163 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21164 vec wwyywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21165 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21166 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21167 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21168 vec wwyyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21169 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21170 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21171 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21172 vec wwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21173 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21174 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21175 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21176 vec wwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21177 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21178 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21179 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21180 vec wwyzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21181 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21182 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21183 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21184 vec wwyzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21185 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21186 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21187 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21188 vec wwyzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21189 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21190 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21191 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21192 vec wwyzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21193 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21194 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21195 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21196 vec wwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21197 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21198 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21199 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21200 vec wwyzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21201 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21202 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21203 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21204 vec wwyzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21205 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21206 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21207 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21208 vec wwyzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21209 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21210 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21211 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21212 vec wwyzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21213 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21214 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21215 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21216 vec wwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21217 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21218 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21219 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21220 vec wwyzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21221 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21222 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21223 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21224 vec wwyzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21225 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21226 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21227 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21228 vec wwyzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21229 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21230 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21231 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21232 vec wwyzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21233 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21234 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21235 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21236 vec wwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21237 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21238 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21239 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21240 vec wwyzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21241 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21242 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21243 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21244 vec wwyzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21245 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21246 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21247 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21248 vec wwyzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21249 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21250 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21251 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21252 vec wwyzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21253 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21254 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21255 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21256 vec wwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21257 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21258 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21259 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21260 vec wwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21261 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21262 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21263 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21264 vec wwywxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21265 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21266 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21267 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21268 vec wwywxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21269 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21270 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21271 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21272 vec wwywxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21273 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21274 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21275 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21276 vec wwywxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21277 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21278 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21279 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21280 vec wwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21281 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21282 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21283 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21284 vec wwywyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21285 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21286 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21287 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21288 vec wwywyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21289 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21290 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21291 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21292 vec wwywyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21293 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21294 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21295 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21296 vec wwywyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21297 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21298 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21299 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21300 vec wwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21301 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21302 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21303 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21304 vec wwywzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21305 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21306 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21307 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21308 vec wwywzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21309 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21310 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21311 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21312 vec wwywzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21313 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21314 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21315 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21316 vec wwywzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21317 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21318 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21319 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21320 vec wwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21321 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21322 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21323 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21324 vec wwywwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21325 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21326 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21327 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21328 vec wwywwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21329 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21330 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21331 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21332 vec wwywwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21333 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21334 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21335 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21336 vec wwywww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21337 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21338 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21339 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21340 vec wwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21341 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21342 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21343 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21344 vec wwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21345 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21346 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21347 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21348 vec wwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21349 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21350 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21351 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21352 vec wwzxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21353 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21354 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21355 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21356 vec wwzxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21357 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21358 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21359 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21360 vec wwzxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21361 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21362 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21363 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21364 vec wwzxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21365 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21366 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21367 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21368 vec wwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21369 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21370 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21371 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21372 vec wwzxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21373 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21374 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21375 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21376 vec wwzxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21377 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21378 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21379 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21380 vec wwzxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21381 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21382 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21383 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21384 vec wwzxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21385 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21386 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21387 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21388 vec wwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21389 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21390 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21391 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21392 vec wwzxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21393 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21394 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21395 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21396 vec wwzxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21397 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21398 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21399 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21400 vec wwzxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21401 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21402 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21403 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21404 vec wwzxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21405 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21406 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21407 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21408 vec wwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21409 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21410 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21411 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21412 vec wwzxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21413 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21414 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21415 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21416 vec wwzxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21417 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21418 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21419 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21420 vec wwzxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21421 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21422 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21423 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21424 vec wwzxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21425 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21426 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21427 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21428 vec wwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21429 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21430 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21431 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21432 vec wwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21433 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21434 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21435 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21436 vec wwzyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21437 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21438 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21439 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21440 vec wwzyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21441 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21442 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21443 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21444 vec wwzyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21445 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21446 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21447 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21448 vec wwzyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21449 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21450 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21451 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21452 vec wwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21453 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21454 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21455 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21456 vec wwzyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21457 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21458 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21459 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21460 vec wwzyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21461 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21462 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21463 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21464 vec wwzyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21465 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21466 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21467 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21468 vec wwzyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21469 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21470 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21471 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21472 vec wwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21473 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21474 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21475 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21476 vec wwzyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21477 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21478 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21479 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21480 vec wwzyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21481 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21482 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21483 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21484 vec wwzyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21485 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21486 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21487 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21488 vec wwzyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21489 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21490 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21491 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21492 vec wwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21493 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21494 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21495 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21496 vec wwzywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21497 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21498 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21499 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21500 vec wwzywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21501 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21502 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21503 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21504 vec wwzywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21505 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21506 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21507 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21508 vec wwzyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21509 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21510 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21511 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21512 vec wwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21513 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21514 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21515 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21516 vec wwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21517 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21518 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21519 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21520 vec wwzzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21521 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21522 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21523 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21524 vec wwzzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21525 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21526 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21527 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21528 vec wwzzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21529 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21530 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21531 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21532 vec wwzzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21533 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21534 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21535 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21536 vec wwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21537 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21538 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21539 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21540 vec wwzzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21541 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21542 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21543 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21544 vec wwzzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21545 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21546 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21547 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21548 vec wwzzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21549 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21550 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21551 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21552 vec wwzzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21553 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21554 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21555 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21556 vec wwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21557 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21558 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21559 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21560 vec wwzzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21561 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21562 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21563 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21564 vec wwzzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21565 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21566 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21567 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21568 vec wwzzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21569 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21570 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21571 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21572 vec wwzzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21573 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21574 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21575 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21576 vec wwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21577 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21578 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21579 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21580 vec wwzzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21581 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21582 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21583 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21584 vec wwzzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21585 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21586 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21587 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21588 vec wwzzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21589 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21590 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21591 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21592 vec wwzzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21593 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21594 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21595 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21596 vec wwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21597 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21598 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21599 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21600 vec wwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21601 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21602 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21603 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21604 vec wwzwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21605 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21606 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21607 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21608 vec wwzwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21609 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21610 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21611 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21612 vec wwzwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21613 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21614 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21615 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21616 vec wwzwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21617 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21618 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21619 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21620 vec wwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21621 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21622 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21623 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21624 vec wwzwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21625 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21626 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21627 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21628 vec wwzwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21629 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21630 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21631 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21632 vec wwzwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21633 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21634 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21635 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21636 vec wwzwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21637 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21638 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21639 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21640 vec wwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21641 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21642 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21643 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21644 vec wwzwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21645 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21646 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21647 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21648 vec wwzwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21649 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21650 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21651 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21652 vec wwzwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21653 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21654 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21655 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21656 vec wwzwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21657 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21658 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21659 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21660 vec wwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21661 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21662 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21663 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21664 vec wwzwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21665 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21666 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21667 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21668 vec wwzwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21669 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21670 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21671 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21672 vec wwzwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21673 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21674 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21675 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21676 vec wwzwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21677 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21678 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21679 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21680 vec www() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21681 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21682 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21683 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21684 vec wwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21685 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21686 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21687 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21688 vec wwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21689 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21690 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21691 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21692 vec wwwxxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21693 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21694 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21695 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21696 vec wwwxxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21697 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21698 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21699 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21700 vec wwwxxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21701 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21702 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21703 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21704 vec wwwxxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21705 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21706 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21707 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21708 vec wwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21709 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21710 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21711 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21712 vec wwwxyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21713 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21714 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21715 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21716 vec wwwxyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21717 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21718 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21719 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21720 vec wwwxyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21721 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21722 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21723 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21724 vec wwwxyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21725 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21726 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21727 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21728 vec wwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21729 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21730 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21731 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21732 vec wwwxzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21733 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21734 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21735 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21736 vec wwwxzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21737 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21738 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21739 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21740 vec wwwxzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21741 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21742 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21743 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21744 vec wwwxzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21745 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21746 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21747 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21748 vec wwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21749 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21750 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21751 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21752 vec wwwxwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21753 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21754 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21755 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21756 vec wwwxwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21757 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21758 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21759 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21760 vec wwwxwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21761 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21762 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21763 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21764 vec wwwxww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21765 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21766 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21767 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21768 vec wwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21769 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21770 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21771 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21772 vec wwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21773 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21774 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21775 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21776 vec wwwyxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21777 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21778 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21779 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21780 vec wwwyxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21781 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21782 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21783 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21784 vec wwwyxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21785 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21786 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21787 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21788 vec wwwyxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21789 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21790 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21791 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21792 vec wwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21793 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21794 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21795 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21796 vec wwwyyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21797 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21798 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21799 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21800 vec wwwyyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21801 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21802 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21803 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21804 vec wwwyyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21805 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21806 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21807 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21808 vec wwwyyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21809 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21810 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21811 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21812 vec wwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21813 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21814 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21815 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21816 vec wwwyzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21817 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21818 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21819 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21820 vec wwwyzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21821 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21822 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21823 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21824 vec wwwyzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21825 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21826 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21827 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21828 vec wwwyzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21829 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21830 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21831 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21832 vec wwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21833 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21834 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21835 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21836 vec wwwywx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21837 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21838 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21839 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21840 vec wwwywy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21841 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21842 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21843 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21844 vec wwwywz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21845 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21846 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21847 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21848 vec wwwyww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21849 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21850 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21851 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21852 vec wwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21853 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21854 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21855 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21856 vec wwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21857 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21858 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21859 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21860 vec wwwzxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21861 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21862 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21863 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21864 vec wwwzxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21865 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21866 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21867 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21868 vec wwwzxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21869 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21870 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21871 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21872 vec wwwzxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21873 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21874 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21875 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21876 vec wwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21877 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21878 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21879 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21880 vec wwwzyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21881 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21882 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21883 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21884 vec wwwzyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21885 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21886 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21887 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21888 vec wwwzyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21889 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21890 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21891 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21892 vec wwwzyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21893 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21894 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21895 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21896 vec wwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21897 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21898 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21899 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21900 vec wwwzzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21901 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21902 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21903 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21904 vec wwwzzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21905 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21906 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21907 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21908 vec wwwzzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21909 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21910 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21911 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21912 vec wwwzzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21913 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21914 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21915 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21916 vec wwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21917 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21918 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21919 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21920 vec wwwzwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21921 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21922 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21923 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21924 vec wwwzwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21925 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21926 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21927 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21928 vec wwwzwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21929 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21930 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21931 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21932 vec wwwzww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21933 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21934 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21935 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21936 vec wwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21937 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21938 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21939 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21940 vec wwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21941 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21942 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21943 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21944 vec wwwwxx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21945 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21946 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21947 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21948 vec wwwwxy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21949 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21950 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21951 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21952 vec wwwwxz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21953 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21954 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21955 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21956 vec wwwwxw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21957 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21958 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21959 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21960 vec wwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21961 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21962 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21963 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21964 vec wwwwyx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21965 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21966 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21967 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21968 vec wwwwyy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21969 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21970 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21971 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21972 vec wwwwyz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21973 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21974 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21975 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21976 vec wwwwyw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21977 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21978 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21979 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21980 vec wwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21981 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21982 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21983 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21984 vec wwwwzx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21985 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21986 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21987 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21988 vec wwwwzy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21989 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21990 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21991 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21992 vec wwwwzz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21993 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21994 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21995 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21996 vec wwwwzw() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21997 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21998 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
21999 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22000 vec wwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22001 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22002 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22003 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22004 vec wwwwwx() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22005 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22006 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22007 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22008 vec wwwwwy() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22009 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22010 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22011 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22012 vec wwwwwz() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22013 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22014 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22015 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22016 vec wwwwww() {
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22017 vec ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22018 return ret;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22019 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
22020