This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
narrowest-casting-table
485 lines (484 loc) · 36 KB
/
narrowest-casting-table
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
byte -> byte = byte
byte -> short = byte
byte -> char = null
byte -> int = byte
byte -> (byte) = byte
byte -> (byte short) = byte
byte -> (byte short int) = byte
byte -> (short) = byte
byte -> (short int) = byte
byte -> (int) = byte
byte -> (byte boolean) = byte
byte -> (byte short boolean) = byte
byte -> (byte short int boolean) = byte
byte -> (short boolean) = byte
byte -> (short int boolean) = byte
byte -> (int boolean) = byte
byte -> (byte char) = byte
byte -> (byte short char) = byte
byte -> (byte short int char) = byte
byte -> (short char) = byte
byte -> (short int char) = byte
byte -> (int char) = byte
short -> byte = null
short -> short = short
short -> char = null
short -> int = short
short -> (byte) = null
short -> (byte short) = short
short -> (byte short int) = short
short -> (short) = short
short -> (short int) = short
short -> (int) = short
short -> (byte boolean) = null
short -> (byte short boolean) = short
short -> (byte short int boolean) = short
short -> (short boolean) = short
short -> (short int boolean) = short
short -> (int boolean) = short
short -> (byte char) = null
short -> (byte short char) = short
short -> (byte short int char) = short
short -> (short char) = short
short -> (short int char) = short
short -> (int char) = short
char -> byte = null
char -> short = null
char -> char = char
char -> int = char
char -> (byte) = null
char -> (byte short) = null
char -> (byte short int) = char
char -> (short) = null
char -> (short int) = char
char -> (int) = char
char -> (byte boolean) = null
char -> (byte short boolean) = null
char -> (byte short int boolean) = char
char -> (short boolean) = null
char -> (short int boolean) = char
char -> (int boolean) = char
char -> (byte char) = char
char -> (byte short char) = char
char -> (byte short int char) = char
char -> (short char) = char
char -> (short int char) = char
char -> (int char) = char
int -> byte = null
int -> short = null
int -> char = null
int -> int = int
int -> (byte) = null
int -> (byte short) = null
int -> (byte short int) = int
int -> (short) = null
int -> (short int) = int
int -> (int) = int
int -> (byte boolean) = null
int -> (byte short boolean) = null
int -> (byte short int boolean) = int
int -> (short boolean) = null
int -> (short int boolean) = int
int -> (int boolean) = int
int -> (byte char) = null
int -> (byte short char) = null
int -> (byte short int char) = int
int -> (short char) = null
int -> (short int char) = int
int -> (int char) = int
(byte) -> byte = (byte)
(byte) -> short = (byte)
(byte) -> char = null
(byte) -> int = (byte)
(byte) -> (byte) = (byte)
(byte) -> (byte short) = (byte)
(byte) -> (byte short int) = (byte)
(byte) -> (short) = (byte)
(byte) -> (short int) = (byte)
(byte) -> (int) = (byte)
(byte) -> (byte boolean) = (byte)
(byte) -> (byte short boolean) = (byte)
(byte) -> (byte short int boolean) = (byte)
(byte) -> (short boolean) = (byte)
(byte) -> (short int boolean) = (byte)
(byte) -> (int boolean) = (byte)
(byte) -> (byte char) = (byte)
(byte) -> (byte short char) = (byte)
(byte) -> (byte short int char) = (byte)
(byte) -> (short char) = (byte)
(byte) -> (short int char) = (byte)
(byte) -> (int char) = (byte)
(byte short) -> byte = (byte)
(byte short) -> short = (byte short)
(byte short) -> char = null
(byte short) -> int = (byte short)
(byte short) -> (byte) = (byte)
(byte short) -> (byte short) = (byte short)
(byte short) -> (byte short int) = (byte short)
(byte short) -> (short) = (byte short)
(byte short) -> (short int) = (byte short)
(byte short) -> (int) = (byte short)
(byte short) -> (byte boolean) = (byte)
(byte short) -> (byte short boolean) = (byte short)
(byte short) -> (byte short int boolean) = (byte short)
(byte short) -> (short boolean) = (byte short)
(byte short) -> (short int boolean) = (byte short)
(byte short) -> (int boolean) = (byte short)
(byte short) -> (byte char) = (byte)
(byte short) -> (byte short char) = (byte short)
(byte short) -> (byte short int char) = (byte short)
(byte short) -> (short char) = (byte short)
(byte short) -> (short int char) = (byte short)
(byte short) -> (int char) = (byte short)
(byte short int) -> byte = (byte)
(byte short int) -> short = (byte short)
(byte short int) -> char = null
(byte short int) -> int = (byte short int)
(byte short int) -> (byte) = (byte)
(byte short int) -> (byte short) = (byte short)
(byte short int) -> (byte short int) = (byte short int)
(byte short int) -> (short) = (byte short)
(byte short int) -> (short int) = (short int)
(byte short int) -> (int) = (byte short int)
(byte short int) -> (byte boolean) = (byte)
(byte short int) -> (byte short boolean) = (byte short)
(byte short int) -> (byte short int boolean) = (byte short int)
(byte short int) -> (short boolean) = (byte short)
(byte short int) -> (short int boolean) = (short int)
(byte short int) -> (int boolean) = (byte short int)
(byte short int) -> (byte char) = (byte)
(byte short int) -> (byte short char) = (byte short)
(byte short int) -> (byte short int char) = (byte short int)
(byte short int) -> (short char) = (byte short)
(byte short int) -> (short int char) = (short int)
(byte short int) -> (int char) = (byte short int)
(short) -> byte = null
(short) -> short = (short)
(short) -> char = null
(short) -> int = (short)
(short) -> (byte) = null
(short) -> (byte short) = (short)
(short) -> (byte short int) = (short)
(short) -> (short) = (short)
(short) -> (short int) = (short)
(short) -> (int) = (short)
(short) -> (byte boolean) = null
(short) -> (byte short boolean) = (short)
(short) -> (byte short int boolean) = (short)
(short) -> (short boolean) = (short)
(short) -> (short int boolean) = (short)
(short) -> (int boolean) = (short)
(short) -> (byte char) = null
(short) -> (byte short char) = (short)
(short) -> (byte short int char) = (short)
(short) -> (short char) = (short)
(short) -> (short int char) = (short)
(short) -> (int char) = (short)
(short int) -> byte = null
(short int) -> short = (short)
(short int) -> char = null
(short int) -> int = (short int)
(short int) -> (byte) = null
(short int) -> (byte short) = (short)
(short int) -> (byte short int) = (short int)
(short int) -> (short) = (short)
(short int) -> (short int) = (short int)
(short int) -> (int) = (short int)
(short int) -> (byte boolean) = null
(short int) -> (byte short boolean) = (short)
(short int) -> (byte short int boolean) = (short int)
(short int) -> (short boolean) = (short)
(short int) -> (short int boolean) = (short int)
(short int) -> (int boolean) = (short int)
(short int) -> (byte char) = null
(short int) -> (byte short char) = (short)
(short int) -> (byte short int char) = (short int)
(short int) -> (short char) = (short)
(short int) -> (short int char) = (short int)
(short int) -> (int char) = (short int)
(int) -> byte = null
(int) -> short = null
(int) -> char = null
(int) -> int = (int)
(int) -> (byte) = null
(int) -> (byte short) = null
(int) -> (byte short int) = (int)
(int) -> (short) = null
(int) -> (short int) = (int)
(int) -> (int) = (int)
(int) -> (byte boolean) = null
(int) -> (byte short boolean) = null
(int) -> (byte short int boolean) = (int)
(int) -> (short boolean) = null
(int) -> (short int boolean) = (int)
(int) -> (int boolean) = (int)
(int) -> (byte char) = null
(int) -> (byte short char) = null
(int) -> (byte short int char) = (int)
(int) -> (short char) = null
(int) -> (short int char) = (int)
(int) -> (int char) = (int)
(byte boolean) -> byte = (byte)
(byte boolean) -> short = (byte)
(byte boolean) -> char = null
(byte boolean) -> int = (byte)
(byte boolean) -> (byte) = (byte)
(byte boolean) -> (byte short) = (byte)
(byte boolean) -> (byte short int) = (byte)
(byte boolean) -> (short) = (byte)
(byte boolean) -> (short int) = (byte)
(byte boolean) -> (int) = (byte)
(byte boolean) -> (byte boolean) = (byte boolean)
(byte boolean) -> (byte short boolean) = (byte boolean)
(byte boolean) -> (byte short int boolean) = (byte boolean)
(byte boolean) -> (short boolean) = (byte boolean)
(byte boolean) -> (short int boolean) = (byte boolean)
(byte boolean) -> (int boolean) = (byte boolean)
(byte boolean) -> (byte char) = (byte)
(byte boolean) -> (byte short char) = (byte)
(byte boolean) -> (byte short int char) = (byte)
(byte boolean) -> (short char) = (byte)
(byte boolean) -> (short int char) = (byte)
(byte boolean) -> (int char) = (byte)
(byte short boolean) -> byte = (byte)
(byte short boolean) -> short = (byte short)
(byte short boolean) -> char = null
(byte short boolean) -> int = (byte short)
(byte short boolean) -> (byte) = (byte)
(byte short boolean) -> (byte short) = (byte short)
(byte short boolean) -> (byte short int) = (byte short)
(byte short boolean) -> (short) = (byte short)
(byte short boolean) -> (short int) = (byte short)
(byte short boolean) -> (int) = (byte short)
(byte short boolean) -> (byte boolean) = (byte boolean)
(byte short boolean) -> (byte short boolean) = (byte short boolean)
(byte short boolean) -> (byte short int boolean) = (byte short boolean)
(byte short boolean) -> (short boolean) = (byte short boolean)
(byte short boolean) -> (short int boolean) = (byte short boolean)
(byte short boolean) -> (int boolean) = (byte short boolean)
(byte short boolean) -> (byte char) = (byte)
(byte short boolean) -> (byte short char) = (byte short)
(byte short boolean) -> (byte short int char) = (byte short)
(byte short boolean) -> (short char) = (byte short)
(byte short boolean) -> (short int char) = (byte short)
(byte short boolean) -> (int char) = (byte short)
(byte short int boolean) -> byte = (byte)
(byte short int boolean) -> short = (byte short)
(byte short int boolean) -> char = null
(byte short int boolean) -> int = (byte short int)
(byte short int boolean) -> (byte) = (byte)
(byte short int boolean) -> (byte short) = (byte short)
(byte short int boolean) -> (byte short int) = (byte short int)
(byte short int boolean) -> (short) = (byte short)
(byte short int boolean) -> (short int) = (short int)
(byte short int boolean) -> (int) = (byte short int)
(byte short int boolean) -> (byte boolean) = (byte boolean)
(byte short int boolean) -> (byte short boolean) = (byte short boolean)
(byte short int boolean) -> (byte short int boolean) = (byte short int boolean)
(byte short int boolean) -> (short boolean) = (byte short boolean)
(byte short int boolean) -> (short int boolean) = (short int boolean)
(byte short int boolean) -> (int boolean) = (byte short int boolean)
(byte short int boolean) -> (byte char) = (byte)
(byte short int boolean) -> (byte short char) = (byte short)
(byte short int boolean) -> (byte short int char) = (byte short int)
(byte short int boolean) -> (short char) = (byte short)
(byte short int boolean) -> (short int char) = (short int)
(byte short int boolean) -> (int char) = (byte short int)
(short boolean) -> byte = null
(short boolean) -> short = (short)
(short boolean) -> char = null
(short boolean) -> int = (short)
(short boolean) -> (byte) = null
(short boolean) -> (byte short) = (short)
(short boolean) -> (byte short int) = (short)
(short boolean) -> (short) = (short)
(short boolean) -> (short int) = (short)
(short boolean) -> (int) = (short)
(short boolean) -> (byte boolean) = null
(short boolean) -> (byte short boolean) = (short boolean)
(short boolean) -> (byte short int boolean) = (short boolean)
(short boolean) -> (short boolean) = (short boolean)
(short boolean) -> (short int boolean) = (short boolean)
(short boolean) -> (int boolean) = (short boolean)
(short boolean) -> (byte char) = null
(short boolean) -> (byte short char) = (short)
(short boolean) -> (byte short int char) = (short)
(short boolean) -> (short char) = (short)
(short boolean) -> (short int char) = (short)
(short boolean) -> (int char) = (short)
(short int boolean) -> byte = null
(short int boolean) -> short = (short)
(short int boolean) -> char = null
(short int boolean) -> int = (short int)
(short int boolean) -> (byte) = null
(short int boolean) -> (byte short) = (short)
(short int boolean) -> (byte short int) = (short int)
(short int boolean) -> (short) = (short)
(short int boolean) -> (short int) = (short int)
(short int boolean) -> (int) = (short int)
(short int boolean) -> (byte boolean) = null
(short int boolean) -> (byte short boolean) = (short boolean)
(short int boolean) -> (byte short int boolean) = (short int boolean)
(short int boolean) -> (short boolean) = (short boolean)
(short int boolean) -> (short int boolean) = (short int boolean)
(short int boolean) -> (int boolean) = (short int boolean)
(short int boolean) -> (byte char) = null
(short int boolean) -> (byte short char) = (short)
(short int boolean) -> (byte short int char) = (short int)
(short int boolean) -> (short char) = (short)
(short int boolean) -> (short int char) = (short int)
(short int boolean) -> (int char) = (short int)
(int boolean) -> byte = null
(int boolean) -> short = null
(int boolean) -> char = null
(int boolean) -> int = (int)
(int boolean) -> (byte) = null
(int boolean) -> (byte short) = null
(int boolean) -> (byte short int) = (int)
(int boolean) -> (short) = null
(int boolean) -> (short int) = (int)
(int boolean) -> (int) = (int)
(int boolean) -> (byte boolean) = null
(int boolean) -> (byte short boolean) = null
(int boolean) -> (byte short int boolean) = (int boolean)
(int boolean) -> (short boolean) = null
(int boolean) -> (short int boolean) = (int boolean)
(int boolean) -> (int boolean) = (int boolean)
(int boolean) -> (byte char) = null
(int boolean) -> (byte short char) = null
(int boolean) -> (byte short int char) = (int)
(int boolean) -> (short char) = null
(int boolean) -> (short int char) = (int)
(int boolean) -> (int char) = (int)
(byte char) -> byte = (byte)
(byte char) -> short = (byte)
(byte char) -> char = char
(byte char) -> int = (byte char)
(byte char) -> (byte) = (byte)
(byte char) -> (byte short) = (byte)
(byte char) -> (byte short int) = (byte)
(byte char) -> (short) = (byte)
(byte char) -> (short int) = (byte)
(byte char) -> (int) = (byte)
(byte char) -> (byte boolean) = (byte)
(byte char) -> (byte short boolean) = (byte)
(byte char) -> (byte short int boolean) = (byte)
(byte char) -> (short boolean) = (byte)
(byte char) -> (short int boolean) = (byte)
(byte char) -> (int boolean) = (byte)
(byte char) -> (byte char) = (byte char)
(byte char) -> (byte short char) = (byte char)
(byte char) -> (byte short int char) = (byte char)
(byte char) -> (short char) = (byte char)
(byte char) -> (short int char) = (byte char)
(byte char) -> (int char) = (byte char)
(byte short char) -> byte = (byte)
(byte short char) -> short = (byte short)
(byte short char) -> char = char
(byte short char) -> int = (byte short char)
(byte short char) -> (byte) = (byte)
(byte short char) -> (byte short) = (byte short)
(byte short char) -> (byte short int) = (byte short)
(byte short char) -> (short) = (byte short)
(byte short char) -> (short int) = (byte short)
(byte short char) -> (int) = (byte short)
(byte short char) -> (byte boolean) = (byte)
(byte short char) -> (byte short boolean) = (byte short)
(byte short char) -> (byte short int boolean) = (byte short)
(byte short char) -> (short boolean) = (byte short)
(byte short char) -> (short int boolean) = (byte short)
(byte short char) -> (int boolean) = (byte short)
(byte short char) -> (byte char) = (byte char)
(byte short char) -> (byte short char) = (byte short char)
(byte short char) -> (byte short int char) = (byte short char)
(byte short char) -> (short char) = (byte short char)
(byte short char) -> (short int char) = (byte short char)
(byte short char) -> (int char) = (byte short char)
(byte short int char) -> byte = (byte)
(byte short int char) -> short = (byte short)
(byte short int char) -> char = char
(byte short int char) -> int = (byte short int char)
(byte short int char) -> (byte) = (byte)
(byte short int char) -> (byte short) = (byte short)
(byte short int char) -> (byte short int) = (byte short int char)
(byte short int char) -> (short) = (byte short)
(byte short int char) -> (short int) = (short int char)
(byte short int char) -> (int) = (byte short int char)
(byte short int char) -> (byte boolean) = (byte)
(byte short int char) -> (byte short boolean) = (byte short)
(byte short int char) -> (byte short int boolean) = (byte short int char)
(byte short int char) -> (short boolean) = (byte short)
(byte short int char) -> (short int boolean) = (short int char)
(byte short int char) -> (int boolean) = (byte short int char)
(byte short int char) -> (byte char) = (byte char)
(byte short int char) -> (byte short char) = (byte short char)
(byte short int char) -> (byte short int char) = (byte short int char)
(byte short int char) -> (short char) = (byte short char)
(byte short int char) -> (short int char) = (short int char)
(byte short int char) -> (int char) = (byte short int char)
(short char) -> byte = null
(short char) -> short = (short)
(short char) -> char = char
(short char) -> int = (short char)
(short char) -> (byte) = null
(short char) -> (byte short) = (short)
(short char) -> (byte short int) = (short)
(short char) -> (short) = (short)
(short char) -> (short int) = (short)
(short char) -> (int) = (short)
(short char) -> (byte boolean) = null
(short char) -> (byte short boolean) = (short)
(short char) -> (byte short int boolean) = (short)
(short char) -> (short boolean) = (short)
(short char) -> (short int boolean) = (short)
(short char) -> (int boolean) = (short)
(short char) -> (byte char) = null
(short char) -> (byte short char) = (short char)
(short char) -> (byte short int char) = (short char)
(short char) -> (short char) = (short char)
(short char) -> (short int char) = (short char)
(short char) -> (int char) = (short char)
(short int char) -> byte = null
(short int char) -> short = (short)
(short int char) -> char = char
(short int char) -> int = (short int char)
(short int char) -> (byte) = null
(short int char) -> (byte short) = (short)
(short int char) -> (byte short int) = (short int char)
(short int char) -> (short) = (short)
(short int char) -> (short int) = (short int char)
(short int char) -> (int) = (short int char)
(short int char) -> (byte boolean) = null
(short int char) -> (byte short boolean) = (short)
(short int char) -> (byte short int boolean) = (short int char)
(short int char) -> (short boolean) = (short)
(short int char) -> (short int boolean) = (short int char)
(short int char) -> (int boolean) = (short int char)
(short int char) -> (byte char) = null
(short int char) -> (byte short char) = (short char)
(short int char) -> (byte short int char) = (short int char)
(short int char) -> (short char) = (short char)
(short int char) -> (short int char) = (short int char)
(short int char) -> (int char) = (short int char)
(int char) -> byte = null
(int char) -> short = null
(int char) -> char = char
(int char) -> int = (int char)
(int char) -> (byte) = null
(int char) -> (byte short) = null
(int char) -> (byte short int) = (int char)
(int char) -> (short) = null
(int char) -> (short int) = (int char)
(int char) -> (int) = (int char)
(int char) -> (byte boolean) = null
(int char) -> (byte short boolean) = null
(int char) -> (byte short int boolean) = (int char)
(int char) -> (short boolean) = null
(int char) -> (short int boolean) = (int char)
(int char) -> (int boolean) = (int char)
(int char) -> (byte char) = null
(int char) -> (byte short char) = null
(int char) -> (byte short int char) = (int char)
(int char) -> (short char) = null
(int char) -> (short int char) = (int char)
(int char) -> (int char) = (int char)