alf 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. data/CHANGELOG.md +22 -0
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +9 -10
  4. data/alf.gemspec +3 -3
  5. data/alf.noespec +5 -4
  6. data/doc/commands/show.md +1 -1
  7. data/doc/operators/relational/heading.md +20 -0
  8. data/doc/operators/relational/join.md +4 -3
  9. data/doc/operators/relational/matching.md +7 -3
  10. data/doc/operators/relational/restrict.md +2 -2
  11. data/examples/hitradio/compact.rb +48 -0
  12. data/examples/hitradio/compare1.rb +28 -0
  13. data/examples/hitradio/gz_reader.rb +23 -0
  14. data/examples/hitradio/hitradio-1.alf +1 -0
  15. data/examples/hitradio/hitradio.log +25080 -0
  16. data/examples/hitradio/hitradio.mar +25081 -0
  17. data/examples/hitradio/hitradio.mar.gz +0 -0
  18. data/examples/hitradio/hitradio.rash +25080 -0
  19. data/examples/hitradio/mar_reader.rb +18 -0
  20. data/lib/alf/aggregator/aggregators.rb +28 -0
  21. data/lib/alf/aggregator/aggregators.rbc +2640 -0
  22. data/lib/alf/aggregator/base.rbc +1055 -0
  23. data/lib/alf/aggregator/class_methods.rb +1 -1
  24. data/lib/alf/aggregator/class_methods.rbc +830 -0
  25. data/lib/alf/buffer/sorted.rbc +715 -0
  26. data/lib/alf/command/class_methods.rbc +453 -0
  27. data/lib/alf/command/doc_manager.rbc +1604 -0
  28. data/lib/alf/command/exec.rbc +408 -0
  29. data/lib/alf/command/help.rbc +764 -0
  30. data/lib/alf/command/main.rb +37 -5
  31. data/lib/alf/command/main.rbc +3612 -0
  32. data/lib/alf/command/show.rb +37 -5
  33. data/lib/alf/command/show.rbc +1327 -0
  34. data/lib/alf/environment/base.rbc +459 -0
  35. data/lib/alf/environment/class_methods.rbc +1110 -0
  36. data/lib/alf/environment/explicit.rb +2 -2
  37. data/lib/alf/environment/explicit.rbc +601 -0
  38. data/lib/alf/environment/folder.rb +2 -2
  39. data/lib/alf/environment/folder.rbc +942 -0
  40. data/lib/alf/errors.rb +4 -0
  41. data/lib/alf/errors.rbc +155 -0
  42. data/lib/alf/extra/csv.rb +5 -2
  43. data/lib/alf/extra/csv.rbc +2021 -0
  44. data/lib/alf/extra/logs.rbc +1957 -0
  45. data/lib/alf/extra/sequel.rbc +1417 -0
  46. data/lib/alf/extra/yaml.rbc +435 -0
  47. data/lib/alf/extra.rbc +101 -0
  48. data/lib/alf/iterator/base.rbc +437 -0
  49. data/lib/alf/iterator/class_methods.rbc +518 -0
  50. data/lib/alf/iterator/proxy.rbc +599 -0
  51. data/lib/alf/lispy/instance_methods.rbc +2535 -0
  52. data/lib/alf/loader.rb +2 -1
  53. data/lib/alf/loader.rbc +85 -0
  54. data/lib/alf/operator/base.rbc +860 -0
  55. data/lib/alf/operator/binary.rbc +595 -0
  56. data/lib/alf/operator/cesure.rbc +883 -0
  57. data/lib/alf/operator/class_methods.rbc +1915 -0
  58. data/lib/alf/operator/experimental.rbc +200 -0
  59. data/lib/alf/operator/non_relational/autonum.rbc +587 -0
  60. data/lib/alf/operator/non_relational/clip.rbc +522 -0
  61. data/lib/alf/operator/non_relational/coerce.rbc +596 -0
  62. data/lib/alf/operator/non_relational/compact.rbc +1283 -0
  63. data/lib/alf/operator/non_relational/defaults.rbc +733 -0
  64. data/lib/alf/operator/non_relational/generator.rbc +1015 -0
  65. data/lib/alf/operator/non_relational/sort.rbc +665 -0
  66. data/lib/alf/operator/nullary.rbc +404 -0
  67. data/lib/alf/operator/relational/extend.rbc +616 -0
  68. data/lib/alf/operator/relational/group.rbc +968 -0
  69. data/lib/alf/operator/relational/heading.rb +30 -0
  70. data/lib/alf/operator/relational/heading.rbc +657 -0
  71. data/lib/alf/operator/relational/intersect.rbc +969 -0
  72. data/lib/alf/operator/relational/join.rbc +1708 -0
  73. data/lib/alf/operator/relational/matching.rbc +1047 -0
  74. data/lib/alf/operator/relational/minus.rbc +965 -0
  75. data/lib/alf/operator/relational/not_matching.rbc +1047 -0
  76. data/lib/alf/operator/relational/project.rbc +669 -0
  77. data/lib/alf/operator/relational/quota.rbc +1193 -0
  78. data/lib/alf/operator/relational/rank.rbc +1217 -0
  79. data/lib/alf/operator/relational/rename.rbc +496 -0
  80. data/lib/alf/operator/relational/restrict.rbc +611 -0
  81. data/lib/alf/operator/relational/summarize.rbc +1922 -0
  82. data/lib/alf/operator/relational/ungroup.rbc +643 -0
  83. data/lib/alf/operator/relational/union.rbc +846 -0
  84. data/lib/alf/operator/relational/unwrap.rbc +540 -0
  85. data/lib/alf/operator/relational/wrap.rbc +560 -0
  86. data/lib/alf/operator/shortcut.rbc +809 -0
  87. data/lib/alf/operator/signature.rbc +4640 -0
  88. data/lib/alf/operator/transform.rbc +484 -0
  89. data/lib/alf/operator/unary.rbc +629 -0
  90. data/lib/alf/reader/alf_file.rbc +464 -0
  91. data/lib/alf/reader/base.rbc +1613 -0
  92. data/lib/alf/reader/class_methods.rb +1 -1
  93. data/lib/alf/reader/class_methods.rbc +1099 -0
  94. data/lib/alf/reader/rash.rbc +583 -0
  95. data/lib/alf/relation/class_methods.rbc +674 -0
  96. data/lib/alf/relation/instance_methods.rb +7 -0
  97. data/lib/alf/relation/instance_methods.rbc +2107 -0
  98. data/lib/alf/renderer/base.rbc +936 -0
  99. data/lib/alf/renderer/class_methods.rbc +875 -0
  100. data/lib/alf/renderer/rash.rb +16 -2
  101. data/lib/alf/renderer/rash.rbc +802 -0
  102. data/lib/alf/renderer/text.rb +54 -16
  103. data/lib/alf/renderer/text.rbc +5530 -0
  104. data/lib/alf/tools/coerce.rbc +352 -0
  105. data/lib/alf/tools/miscellaneous.rb +8 -1
  106. data/lib/alf/tools/miscellaneous.rbc +1497 -0
  107. data/lib/alf/tools/to_lispy.rbc +2618 -0
  108. data/lib/alf/tools/to_ruby_literal.rbc +344 -0
  109. data/lib/alf/tools/tuple_handle.rbc +738 -0
  110. data/lib/alf/types/attr_list.rbc +1535 -0
  111. data/lib/alf/types/attr_name.rbc +781 -0
  112. data/lib/alf/types/boolean.rbc +365 -0
  113. data/lib/alf/types/heading.rb +16 -1
  114. data/lib/alf/types/heading.rbc +1778 -0
  115. data/lib/alf/types/ordering.rbc +2228 -0
  116. data/lib/alf/types/renaming.rbc +1064 -0
  117. data/lib/alf/types/summarization.rbc +1394 -0
  118. data/lib/alf/types/tuple_computation.rbc +1061 -0
  119. data/lib/alf/types/tuple_expression.rbc +1016 -0
  120. data/lib/alf/types/tuple_predicate.rbc +1349 -0
  121. data/lib/alf/version.rb +1 -1
  122. data/lib/alf/version.rbc +350 -0
  123. data/lib/alf.rb +13 -5
  124. data/lib/alf.rbc +3884 -0
  125. data/spec/integration/command/alf/alf_help.stdout +8 -6
  126. data/spec/integration/command/help/help_1.stdout +3 -1
  127. data/spec/integration/command/show/show_base.cmd +1 -1
  128. data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
  129. data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
  130. data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
  131. data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
  132. data/spec/integration/command/show/show_ff.cmd +1 -0
  133. data/spec/integration/command/show/show_ff.stdout +10 -0
  134. data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
  135. data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
  136. data/spec/integration/test_alf.rbc +1098 -0
  137. data/spec/integration/test_command.rbc +1832 -0
  138. data/spec/integration/test_examples.rbc +559 -0
  139. data/spec/integration/test_semantics.rbc +991 -0
  140. data/spec/regression/alf_file/test___FILE__.rbc +524 -0
  141. data/spec/regression/heading/test_heading_with_date.rbc +381 -0
  142. data/spec/regression/lispy/test_compile.rbc +404 -0
  143. data/spec/regression/logs/test_path_attribute.rbc +687 -0
  144. data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
  145. data/spec/regression/relation/test_relation_with_date.rbc +381 -0
  146. data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
  147. data/spec/shared/a_value.rbc +337 -0
  148. data/spec/shared/an_operator_class.rbc +908 -0
  149. data/spec/spec_helper.rbc +453 -0
  150. data/spec/unit/assumptions/test_file.rbc +668 -0
  151. data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
  152. data/spec/unit/assumptions/test_scoping.rbc +755 -0
  153. data/spec/unit/assumptions/test_set.rbc +1928 -0
  154. data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
  155. data/spec/unit/csv/test_reader.rbc +2228 -0
  156. data/spec/unit/csv/test_renderer.rbc +2426 -0
  157. data/spec/unit/environment/test_explicit.rbc +464 -0
  158. data/spec/unit/environment/test_folder.rb +2 -2
  159. data/spec/unit/environment/test_folder.rbc +1304 -0
  160. data/spec/unit/lispy/test_relation.rbc +1477 -0
  161. data/spec/unit/lispy/test_run.rbc +1735 -0
  162. data/spec/unit/lispy/test_tuple.rbc +1686 -0
  163. data/spec/unit/logs/test_reader.rb +6 -4
  164. data/spec/unit/logs/test_reader.rbc +1807 -0
  165. data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
  166. data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
  167. data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
  168. data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
  169. data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
  170. data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
  171. data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
  172. data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
  173. data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
  174. data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
  175. data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
  176. data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
  177. data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
  178. data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
  179. data/spec/unit/operator/relational/test_extend.rbc +1300 -0
  180. data/spec/unit/operator/relational/test_group.rbc +2142 -0
  181. data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
  182. data/spec/unit/operator/relational/test_join.rbc +1282 -0
  183. data/spec/unit/operator/relational/test_minus.rbc +1995 -0
  184. data/spec/unit/operator/relational/test_project.rbc +2870 -0
  185. data/spec/unit/operator/relational/test_quota.rbc +1788 -0
  186. data/spec/unit/operator/relational/test_rank.rbc +2079 -0
  187. data/spec/unit/operator/relational/test_rename.rbc +1158 -0
  188. data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
  189. data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
  190. data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
  191. data/spec/unit/operator/relational/test_union.rbc +1089 -0
  192. data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
  193. data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
  194. data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
  195. data/spec/unit/operator/signature/test_initialize.rbc +544 -0
  196. data/spec/unit/operator/signature/test_install.rbc +1671 -0
  197. data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
  198. data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
  199. data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
  200. data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
  201. data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
  202. data/spec/unit/operator/test_non_relational.rbc +571 -0
  203. data/spec/unit/operator/test_relational.rb +2 -1
  204. data/spec/unit/operator/test_relational.rbc +758 -0
  205. data/spec/unit/reader/test_alf_file.rbc +1107 -0
  206. data/spec/unit/reader/test_initialize.rbc +1774 -0
  207. data/spec/unit/reader/test_rash.rbc +1127 -0
  208. data/spec/unit/relation/test_coerce.rbc +2320 -0
  209. data/spec/unit/relation/test_inspect.rbc +502 -0
  210. data/spec/unit/relation/test_relops.rbc +1585 -0
  211. data/spec/unit/relation/test_to_a.rbc +1112 -0
  212. data/spec/unit/renderer/test_initialize.rbc +1766 -0
  213. data/spec/unit/sequel/test_environment.rbc +1723 -0
  214. data/spec/unit/test_aggregator.rb +38 -1
  215. data/spec/unit/test_aggregator.rbc +4358 -0
  216. data/spec/unit/test_environment.rbc +1271 -0
  217. data/spec/unit/test_lispy.rbc +879 -0
  218. data/spec/unit/test_operator.rbc +531 -0
  219. data/spec/unit/test_reader.rb +6 -2
  220. data/spec/unit/test_reader.rbc +1249 -0
  221. data/spec/unit/test_relation.rbc +2588 -0
  222. data/spec/unit/test_renderer.rb +12 -1
  223. data/spec/unit/test_renderer.rbc +2011 -0
  224. data/spec/unit/text/test_cell.rb +1 -0
  225. data/spec/unit/text/test_cell.rbc +1532 -0
  226. data/spec/unit/text/test_row.rbc +847 -0
  227. data/spec/unit/text/test_table.rbc +978 -0
  228. data/spec/unit/tools/test_coalesce.rbc +456 -0
  229. data/spec/unit/tools/test_coerce.rbc +279 -0
  230. data/spec/unit/tools/test_to_lispy.rbc +5711 -0
  231. data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
  232. data/spec/unit/tools/test_tools.rbc +672 -0
  233. data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
  234. data/spec/unit/tools/test_tuple_heading.rb +20 -0
  235. data/spec/unit/tools/test_tuple_heading.rbc +821 -0
  236. data/spec/unit/tools/test_varargs.rbc +495 -0
  237. data/spec/unit/types/heading/test_union.rb +21 -0
  238. data/spec/unit/types/heading/test_union.rbc +1043 -0
  239. data/spec/unit/types/test_attr_list.rbc +4481 -0
  240. data/spec/unit/types/test_attr_name.rbc +1872 -0
  241. data/spec/unit/types/test_heading.rbc +1735 -0
  242. data/spec/unit/types/test_ordering.rbc +3695 -0
  243. data/spec/unit/types/test_renaming.rbc +2426 -0
  244. data/spec/unit/types/test_summarization.rbc +2538 -0
  245. data/spec/unit/types/test_tuple_computation.rbc +2340 -0
  246. data/spec/unit/types/test_tuple_expression.rbc +2285 -0
  247. data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
  248. data/tasks/gh-pages.rake +1 -1
  249. metadata +529 -125
@@ -0,0 +1,2340 @@
1
+ !RBIX
2
+ 11817445442317083511
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 11
63
+ spec_helper
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 3
69
+ Alf
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 3
82
+ Alf
83
+ i
84
+ 13
85
+ 5
86
+ 66
87
+ 5
88
+ 45
89
+ 0
90
+ 1
91
+ 56
92
+ 2
93
+ 47
94
+ 50
95
+ 3
96
+ 1
97
+ 11
98
+ I
99
+ 3
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 4
109
+ x
110
+ 16
111
+ TupleComputation
112
+ n
113
+ M
114
+ 1
115
+ p
116
+ 2
117
+ x
118
+ 9
119
+ for_block
120
+ t
121
+ n
122
+ x
123
+ 3
124
+ Alf
125
+ i
126
+ 32
127
+ 5
128
+ 7
129
+ 0
130
+ 56
131
+ 1
132
+ 47
133
+ 50
134
+ 2
135
+ 1
136
+ 15
137
+ 5
138
+ 7
139
+ 3
140
+ 64
141
+ 56
142
+ 4
143
+ 47
144
+ 50
145
+ 5
146
+ 1
147
+ 15
148
+ 5
149
+ 7
150
+ 6
151
+ 64
152
+ 56
153
+ 7
154
+ 47
155
+ 50
156
+ 5
157
+ 1
158
+ 11
159
+ I
160
+ 4
161
+ I
162
+ 0
163
+ I
164
+ 0
165
+ I
166
+ 0
167
+ I
168
+ -2
169
+ p
170
+ 8
171
+ x
172
+ 6
173
+ handle
174
+ M
175
+ 1
176
+ p
177
+ 2
178
+ x
179
+ 9
180
+ for_block
181
+ t
182
+ n
183
+ x
184
+ 3
185
+ Alf
186
+ i
187
+ 47
188
+ 45
189
+ 0
190
+ 1
191
+ 43
192
+ 2
193
+ 13
194
+ 71
195
+ 3
196
+ 47
197
+ 9
198
+ 23
199
+ 47
200
+ 49
201
+ 4
202
+ 0
203
+ 13
204
+ 47
205
+ 49
206
+ 5
207
+ 0
208
+ 15
209
+ 8
210
+ 26
211
+ 49
212
+ 3
213
+ 0
214
+ 44
215
+ 43
216
+ 6
217
+ 79
218
+ 49
219
+ 7
220
+ 1
221
+ 13
222
+ 7
223
+ 8
224
+ 7
225
+ 9
226
+ 64
227
+ 49
228
+ 10
229
+ 2
230
+ 15
231
+ 49
232
+ 11
233
+ 1
234
+ 11
235
+ I
236
+ 6
237
+ I
238
+ 0
239
+ I
240
+ 0
241
+ I
242
+ 0
243
+ I
244
+ -2
245
+ p
246
+ 12
247
+ x
248
+ 5
249
+ Tools
250
+ n
251
+ x
252
+ 11
253
+ TupleHandle
254
+ x
255
+ 3
256
+ new
257
+ x
258
+ 8
259
+ allocate
260
+ x
261
+ 10
262
+ initialize
263
+ x
264
+ 4
265
+ Hash
266
+ x
267
+ 16
268
+ new_from_literal
269
+ x
270
+ 3
271
+ who
272
+ s
273
+ 3
274
+ alf
275
+ x
276
+ 3
277
+ []=
278
+ x
279
+ 3
280
+ set
281
+ p
282
+ 3
283
+ I
284
+ 0
285
+ I
286
+ 5
287
+ I
288
+ 2f
289
+ x
290
+ 71
291
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
292
+ p
293
+ 0
294
+ x
295
+ 3
296
+ let
297
+ s
298
+ 6
299
+ coerce
300
+ M
301
+ 1
302
+ p
303
+ 2
304
+ x
305
+ 9
306
+ for_block
307
+ t
308
+ n
309
+ x
310
+ 3
311
+ Alf
312
+ i
313
+ 52
314
+ 5
315
+ 56
316
+ 0
317
+ 47
318
+ 50
319
+ 1
320
+ 0
321
+ 15
322
+ 5
323
+ 7
324
+ 2
325
+ 64
326
+ 56
327
+ 3
328
+ 47
329
+ 50
330
+ 4
331
+ 1
332
+ 15
333
+ 5
334
+ 7
335
+ 5
336
+ 64
337
+ 56
338
+ 6
339
+ 47
340
+ 50
341
+ 4
342
+ 1
343
+ 15
344
+ 5
345
+ 7
346
+ 7
347
+ 64
348
+ 56
349
+ 8
350
+ 47
351
+ 50
352
+ 4
353
+ 1
354
+ 15
355
+ 5
356
+ 7
357
+ 9
358
+ 64
359
+ 56
360
+ 10
361
+ 47
362
+ 50
363
+ 4
364
+ 1
365
+ 11
366
+ I
367
+ 4
368
+ I
369
+ 0
370
+ I
371
+ 0
372
+ I
373
+ 0
374
+ I
375
+ -2
376
+ p
377
+ 11
378
+ M
379
+ 1
380
+ p
381
+ 2
382
+ x
383
+ 9
384
+ for_block
385
+ t
386
+ n
387
+ x
388
+ 3
389
+ Alf
390
+ i
391
+ 16
392
+ 45
393
+ 0
394
+ 1
395
+ 5
396
+ 48
397
+ 2
398
+ 49
399
+ 3
400
+ 1
401
+ 5
402
+ 48
403
+ 4
404
+ 49
405
+ 5
406
+ 1
407
+ 11
408
+ I
409
+ 3
410
+ I
411
+ 0
412
+ I
413
+ 0
414
+ I
415
+ 0
416
+ I
417
+ -2
418
+ p
419
+ 6
420
+ x
421
+ 16
422
+ TupleComputation
423
+ n
424
+ x
425
+ 3
426
+ arg
427
+ x
428
+ 6
429
+ coerce
430
+ x
431
+ 6
432
+ handle
433
+ x
434
+ 8
435
+ evaluate
436
+ p
437
+ 3
438
+ I
439
+ 0
440
+ I
441
+ 8
442
+ I
443
+ 10
444
+ x
445
+ 71
446
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
447
+ p
448
+ 0
449
+ x
450
+ 7
451
+ subject
452
+ s
453
+ 23
454
+ from a TupleComputation
455
+ M
456
+ 1
457
+ p
458
+ 2
459
+ x
460
+ 9
461
+ for_block
462
+ t
463
+ n
464
+ x
465
+ 3
466
+ Alf
467
+ i
468
+ 18
469
+ 5
470
+ 7
471
+ 0
472
+ 56
473
+ 1
474
+ 47
475
+ 50
476
+ 2
477
+ 1
478
+ 15
479
+ 5
480
+ 56
481
+ 3
482
+ 47
483
+ 50
484
+ 4
485
+ 0
486
+ 11
487
+ I
488
+ 4
489
+ I
490
+ 0
491
+ I
492
+ 0
493
+ I
494
+ 0
495
+ I
496
+ -2
497
+ p
498
+ 5
499
+ x
500
+ 3
501
+ arg
502
+ M
503
+ 1
504
+ p
505
+ 2
506
+ x
507
+ 9
508
+ for_block
509
+ t
510
+ n
511
+ x
512
+ 3
513
+ Alf
514
+ i
515
+ 69
516
+ 45
517
+ 0
518
+ 1
519
+ 13
520
+ 71
521
+ 2
522
+ 47
523
+ 9
524
+ 43
525
+ 47
526
+ 49
527
+ 3
528
+ 0
529
+ 13
530
+ 44
531
+ 43
532
+ 4
533
+ 79
534
+ 49
535
+ 5
536
+ 1
537
+ 13
538
+ 7
539
+ 6
540
+ 45
541
+ 7
542
+ 8
543
+ 7
544
+ 9
545
+ 49
546
+ 10
547
+ 1
548
+ 49
549
+ 11
550
+ 2
551
+ 15
552
+ 47
553
+ 49
554
+ 12
555
+ 1
556
+ 15
557
+ 8
558
+ 68
559
+ 44
560
+ 43
561
+ 4
562
+ 79
563
+ 49
564
+ 5
565
+ 1
566
+ 13
567
+ 7
568
+ 6
569
+ 45
570
+ 7
571
+ 13
572
+ 7
573
+ 9
574
+ 49
575
+ 10
576
+ 1
577
+ 49
578
+ 11
579
+ 2
580
+ 15
581
+ 49
582
+ 2
583
+ 1
584
+ 11
585
+ I
586
+ 8
587
+ I
588
+ 0
589
+ I
590
+ 0
591
+ I
592
+ 0
593
+ I
594
+ -2
595
+ p
596
+ 14
597
+ x
598
+ 16
599
+ TupleComputation
600
+ n
601
+ x
602
+ 3
603
+ new
604
+ x
605
+ 8
606
+ allocate
607
+ x
608
+ 4
609
+ Hash
610
+ x
611
+ 16
612
+ new_from_literal
613
+ x
614
+ 5
615
+ hello
616
+ x
617
+ 15
618
+ TupleExpression
619
+ n
620
+ x
621
+ 3
622
+ who
623
+ x
624
+ 6
625
+ coerce
626
+ x
627
+ 3
628
+ []=
629
+ x
630
+ 10
631
+ initialize
632
+ n
633
+ p
634
+ 3
635
+ I
636
+ 0
637
+ I
638
+ b
639
+ I
640
+ 45
641
+ x
642
+ 71
643
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
644
+ p
645
+ 0
646
+ x
647
+ 3
648
+ let
649
+ M
650
+ 1
651
+ p
652
+ 2
653
+ x
654
+ 9
655
+ for_block
656
+ t
657
+ n
658
+ x
659
+ 3
660
+ Alf
661
+ i
662
+ 28
663
+ 5
664
+ 5
665
+ 44
666
+ 43
667
+ 0
668
+ 79
669
+ 49
670
+ 1
671
+ 1
672
+ 13
673
+ 7
674
+ 2
675
+ 7
676
+ 3
677
+ 64
678
+ 49
679
+ 4
680
+ 2
681
+ 15
682
+ 47
683
+ 49
684
+ 5
685
+ 1
686
+ 47
687
+ 49
688
+ 6
689
+ 1
690
+ 11
691
+ I
692
+ 7
693
+ I
694
+ 0
695
+ I
696
+ 0
697
+ I
698
+ 0
699
+ I
700
+ -2
701
+ p
702
+ 7
703
+ x
704
+ 4
705
+ Hash
706
+ x
707
+ 16
708
+ new_from_literal
709
+ x
710
+ 5
711
+ hello
712
+ s
713
+ 3
714
+ alf
715
+ x
716
+ 3
717
+ []=
718
+ x
719
+ 3
720
+ eql
721
+ x
722
+ 6
723
+ should
724
+ p
725
+ 3
726
+ I
727
+ 0
728
+ I
729
+ c
730
+ I
731
+ 1c
732
+ x
733
+ 71
734
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
735
+ p
736
+ 0
737
+ x
738
+ 2
739
+ it
740
+ p
741
+ 5
742
+ I
743
+ 0
744
+ I
745
+ b
746
+ I
747
+ a
748
+ I
749
+ c
750
+ I
751
+ 12
752
+ x
753
+ 71
754
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
755
+ p
756
+ 0
757
+ x
758
+ 8
759
+ describe
760
+ s
761
+ 28
762
+ from a Hash without coercion
763
+ M
764
+ 1
765
+ p
766
+ 2
767
+ x
768
+ 9
769
+ for_block
770
+ t
771
+ n
772
+ x
773
+ 3
774
+ Alf
775
+ i
776
+ 28
777
+ 5
778
+ 7
779
+ 0
780
+ 56
781
+ 1
782
+ 47
783
+ 50
784
+ 2
785
+ 1
786
+ 15
787
+ 5
788
+ 7
789
+ 3
790
+ 56
791
+ 4
792
+ 47
793
+ 50
794
+ 2
795
+ 1
796
+ 15
797
+ 5
798
+ 56
799
+ 5
800
+ 47
801
+ 50
802
+ 6
803
+ 0
804
+ 11
805
+ I
806
+ 4
807
+ I
808
+ 0
809
+ I
810
+ 0
811
+ I
812
+ 0
813
+ I
814
+ -2
815
+ p
816
+ 7
817
+ x
818
+ 3
819
+ arg
820
+ M
821
+ 1
822
+ p
823
+ 2
824
+ x
825
+ 9
826
+ for_block
827
+ t
828
+ n
829
+ x
830
+ 3
831
+ Alf
832
+ i
833
+ 46
834
+ 44
835
+ 43
836
+ 0
837
+ 4
838
+ 3
839
+ 49
840
+ 1
841
+ 1
842
+ 13
843
+ 7
844
+ 2
845
+ 45
846
+ 3
847
+ 4
848
+ 7
849
+ 5
850
+ 49
851
+ 6
852
+ 1
853
+ 49
854
+ 7
855
+ 2
856
+ 15
857
+ 13
858
+ 7
859
+ 8
860
+ 80
861
+ 49
862
+ 7
863
+ 2
864
+ 15
865
+ 13
866
+ 7
867
+ 9
868
+ 5
869
+ 56
870
+ 10
871
+ 47
872
+ 50
873
+ 11
874
+ 0
875
+ 49
876
+ 7
877
+ 2
878
+ 15
879
+ 11
880
+ I
881
+ 6
882
+ I
883
+ 0
884
+ I
885
+ 0
886
+ I
887
+ 0
888
+ I
889
+ -2
890
+ p
891
+ 12
892
+ x
893
+ 4
894
+ Hash
895
+ x
896
+ 16
897
+ new_from_literal
898
+ x
899
+ 5
900
+ hello
901
+ x
902
+ 15
903
+ TupleExpression
904
+ n
905
+ x
906
+ 3
907
+ who
908
+ x
909
+ 6
910
+ coerce
911
+ x
912
+ 3
913
+ []=
914
+ x
915
+ 6
916
+ hello2
917
+ x
918
+ 6
919
+ hello3
920
+ M
921
+ 1
922
+ p
923
+ 2
924
+ x
925
+ 9
926
+ for_block
927
+ t
928
+ n
929
+ x
930
+ 3
931
+ Alf
932
+ i
933
+ 4
934
+ 5
935
+ 48
936
+ 0
937
+ 11
938
+ I
939
+ 2
940
+ I
941
+ 0
942
+ I
943
+ 0
944
+ I
945
+ 0
946
+ I
947
+ -2
948
+ p
949
+ 1
950
+ x
951
+ 3
952
+ who
953
+ p
954
+ 3
955
+ I
956
+ 0
957
+ I
958
+ 13
959
+ I
960
+ 4
961
+ x
962
+ 71
963
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
964
+ p
965
+ 0
966
+ x
967
+ 6
968
+ lambda
969
+ p
970
+ 9
971
+ I
972
+ 0
973
+ I
974
+ 13
975
+ I
976
+ 9
977
+ I
978
+ 11
979
+ I
980
+ 18
981
+ I
982
+ 12
983
+ I
984
+ 20
985
+ I
986
+ 13
987
+ I
988
+ 2e
989
+ x
990
+ 71
991
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
992
+ p
993
+ 0
994
+ x
995
+ 3
996
+ let
997
+ x
998
+ 8
999
+ expected
1000
+ M
1001
+ 1
1002
+ p
1003
+ 2
1004
+ x
1005
+ 9
1006
+ for_block
1007
+ t
1008
+ n
1009
+ x
1010
+ 3
1011
+ Alf
1012
+ i
1013
+ 37
1014
+ 44
1015
+ 43
1016
+ 0
1017
+ 4
1018
+ 3
1019
+ 49
1020
+ 1
1021
+ 1
1022
+ 13
1023
+ 7
1024
+ 2
1025
+ 7
1026
+ 3
1027
+ 64
1028
+ 49
1029
+ 4
1030
+ 2
1031
+ 15
1032
+ 13
1033
+ 7
1034
+ 5
1035
+ 80
1036
+ 49
1037
+ 4
1038
+ 2
1039
+ 15
1040
+ 13
1041
+ 7
1042
+ 6
1043
+ 7
1044
+ 3
1045
+ 64
1046
+ 49
1047
+ 4
1048
+ 2
1049
+ 15
1050
+ 11
1051
+ I
1052
+ 5
1053
+ I
1054
+ 0
1055
+ I
1056
+ 0
1057
+ I
1058
+ 0
1059
+ I
1060
+ -2
1061
+ p
1062
+ 7
1063
+ x
1064
+ 4
1065
+ Hash
1066
+ x
1067
+ 16
1068
+ new_from_literal
1069
+ x
1070
+ 5
1071
+ hello
1072
+ s
1073
+ 3
1074
+ alf
1075
+ x
1076
+ 3
1077
+ []=
1078
+ x
1079
+ 6
1080
+ hello2
1081
+ x
1082
+ 6
1083
+ hello3
1084
+ p
1085
+ 3
1086
+ I
1087
+ 0
1088
+ I
1089
+ 16
1090
+ I
1091
+ 25
1092
+ x
1093
+ 71
1094
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1095
+ p
1096
+ 0
1097
+ M
1098
+ 1
1099
+ p
1100
+ 2
1101
+ x
1102
+ 9
1103
+ for_block
1104
+ t
1105
+ n
1106
+ x
1107
+ 3
1108
+ Alf
1109
+ i
1110
+ 14
1111
+ 5
1112
+ 5
1113
+ 5
1114
+ 48
1115
+ 0
1116
+ 47
1117
+ 49
1118
+ 1
1119
+ 1
1120
+ 47
1121
+ 49
1122
+ 2
1123
+ 1
1124
+ 11
1125
+ I
1126
+ 4
1127
+ I
1128
+ 0
1129
+ I
1130
+ 0
1131
+ I
1132
+ 0
1133
+ I
1134
+ -2
1135
+ p
1136
+ 3
1137
+ x
1138
+ 8
1139
+ expected
1140
+ x
1141
+ 3
1142
+ eql
1143
+ x
1144
+ 6
1145
+ should
1146
+ p
1147
+ 3
1148
+ I
1149
+ 0
1150
+ I
1151
+ 18
1152
+ I
1153
+ e
1154
+ x
1155
+ 71
1156
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1157
+ p
1158
+ 0
1159
+ x
1160
+ 2
1161
+ it
1162
+ p
1163
+ 7
1164
+ I
1165
+ 0
1166
+ I
1167
+ 10
1168
+ I
1169
+ a
1170
+ I
1171
+ 15
1172
+ I
1173
+ 14
1174
+ I
1175
+ 18
1176
+ I
1177
+ 1c
1178
+ x
1179
+ 71
1180
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1181
+ p
1182
+ 0
1183
+ s
1184
+ 25
1185
+ from a Hash with coercion
1186
+ M
1187
+ 1
1188
+ p
1189
+ 2
1190
+ x
1191
+ 9
1192
+ for_block
1193
+ t
1194
+ n
1195
+ x
1196
+ 3
1197
+ Alf
1198
+ i
1199
+ 28
1200
+ 5
1201
+ 7
1202
+ 0
1203
+ 56
1204
+ 1
1205
+ 47
1206
+ 50
1207
+ 2
1208
+ 1
1209
+ 15
1210
+ 5
1211
+ 7
1212
+ 3
1213
+ 56
1214
+ 4
1215
+ 47
1216
+ 50
1217
+ 2
1218
+ 1
1219
+ 15
1220
+ 5
1221
+ 56
1222
+ 5
1223
+ 47
1224
+ 50
1225
+ 6
1226
+ 0
1227
+ 11
1228
+ I
1229
+ 4
1230
+ I
1231
+ 0
1232
+ I
1233
+ 0
1234
+ I
1235
+ 0
1236
+ I
1237
+ -2
1238
+ p
1239
+ 7
1240
+ x
1241
+ 3
1242
+ arg
1243
+ M
1244
+ 1
1245
+ p
1246
+ 2
1247
+ x
1248
+ 9
1249
+ for_block
1250
+ t
1251
+ n
1252
+ x
1253
+ 3
1254
+ Alf
1255
+ i
1256
+ 30
1257
+ 44
1258
+ 43
1259
+ 0
1260
+ 80
1261
+ 49
1262
+ 1
1263
+ 1
1264
+ 13
1265
+ 7
1266
+ 2
1267
+ 64
1268
+ 7
1269
+ 3
1270
+ 64
1271
+ 49
1272
+ 4
1273
+ 2
1274
+ 15
1275
+ 13
1276
+ 7
1277
+ 5
1278
+ 64
1279
+ 7
1280
+ 6
1281
+ 64
1282
+ 49
1283
+ 4
1284
+ 2
1285
+ 15
1286
+ 11
1287
+ I
1288
+ 5
1289
+ I
1290
+ 0
1291
+ I
1292
+ 0
1293
+ I
1294
+ 0
1295
+ I
1296
+ -2
1297
+ p
1298
+ 7
1299
+ x
1300
+ 4
1301
+ Hash
1302
+ x
1303
+ 16
1304
+ new_from_literal
1305
+ s
1306
+ 5
1307
+ hello
1308
+ s
1309
+ 3
1310
+ who
1311
+ x
1312
+ 3
1313
+ []=
1314
+ s
1315
+ 6
1316
+ hello2
1317
+ s
1318
+ 1
1319
+ 2
1320
+ p
1321
+ 3
1322
+ I
1323
+ 0
1324
+ I
1325
+ 1d
1326
+ I
1327
+ 1e
1328
+ x
1329
+ 71
1330
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1331
+ p
1332
+ 0
1333
+ x
1334
+ 3
1335
+ let
1336
+ x
1337
+ 8
1338
+ expected
1339
+ M
1340
+ 1
1341
+ p
1342
+ 2
1343
+ x
1344
+ 9
1345
+ for_block
1346
+ t
1347
+ n
1348
+ x
1349
+ 3
1350
+ Alf
1351
+ i
1352
+ 26
1353
+ 44
1354
+ 43
1355
+ 0
1356
+ 80
1357
+ 49
1358
+ 1
1359
+ 1
1360
+ 13
1361
+ 7
1362
+ 2
1363
+ 7
1364
+ 3
1365
+ 64
1366
+ 49
1367
+ 4
1368
+ 2
1369
+ 15
1370
+ 13
1371
+ 7
1372
+ 5
1373
+ 80
1374
+ 49
1375
+ 4
1376
+ 2
1377
+ 15
1378
+ 11
1379
+ I
1380
+ 5
1381
+ I
1382
+ 0
1383
+ I
1384
+ 0
1385
+ I
1386
+ 0
1387
+ I
1388
+ -2
1389
+ p
1390
+ 6
1391
+ x
1392
+ 4
1393
+ Hash
1394
+ x
1395
+ 16
1396
+ new_from_literal
1397
+ x
1398
+ 5
1399
+ hello
1400
+ s
1401
+ 3
1402
+ alf
1403
+ x
1404
+ 3
1405
+ []=
1406
+ x
1407
+ 6
1408
+ hello2
1409
+ p
1410
+ 3
1411
+ I
1412
+ 0
1413
+ I
1414
+ 20
1415
+ I
1416
+ 1a
1417
+ x
1418
+ 71
1419
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1420
+ p
1421
+ 0
1422
+ M
1423
+ 1
1424
+ p
1425
+ 2
1426
+ x
1427
+ 9
1428
+ for_block
1429
+ t
1430
+ n
1431
+ x
1432
+ 3
1433
+ Alf
1434
+ i
1435
+ 14
1436
+ 5
1437
+ 5
1438
+ 5
1439
+ 48
1440
+ 0
1441
+ 47
1442
+ 49
1443
+ 1
1444
+ 1
1445
+ 47
1446
+ 49
1447
+ 2
1448
+ 1
1449
+ 11
1450
+ I
1451
+ 4
1452
+ I
1453
+ 0
1454
+ I
1455
+ 0
1456
+ I
1457
+ 0
1458
+ I
1459
+ -2
1460
+ p
1461
+ 3
1462
+ x
1463
+ 8
1464
+ expected
1465
+ x
1466
+ 3
1467
+ eql
1468
+ x
1469
+ 6
1470
+ should
1471
+ p
1472
+ 3
1473
+ I
1474
+ 0
1475
+ I
1476
+ 22
1477
+ I
1478
+ e
1479
+ x
1480
+ 71
1481
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1482
+ p
1483
+ 0
1484
+ x
1485
+ 2
1486
+ it
1487
+ p
1488
+ 7
1489
+ I
1490
+ 0
1491
+ I
1492
+ 1c
1493
+ I
1494
+ a
1495
+ I
1496
+ 1f
1497
+ I
1498
+ 14
1499
+ I
1500
+ 22
1501
+ I
1502
+ 1c
1503
+ x
1504
+ 71
1505
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1506
+ p
1507
+ 0
1508
+ s
1509
+ 28
1510
+ from an Array with coercions
1511
+ M
1512
+ 1
1513
+ p
1514
+ 2
1515
+ x
1516
+ 9
1517
+ for_block
1518
+ t
1519
+ n
1520
+ x
1521
+ 3
1522
+ Alf
1523
+ i
1524
+ 28
1525
+ 5
1526
+ 7
1527
+ 0
1528
+ 56
1529
+ 1
1530
+ 47
1531
+ 50
1532
+ 2
1533
+ 1
1534
+ 15
1535
+ 5
1536
+ 7
1537
+ 3
1538
+ 56
1539
+ 4
1540
+ 47
1541
+ 50
1542
+ 2
1543
+ 1
1544
+ 15
1545
+ 5
1546
+ 56
1547
+ 5
1548
+ 47
1549
+ 50
1550
+ 6
1551
+ 0
1552
+ 11
1553
+ I
1554
+ 4
1555
+ I
1556
+ 0
1557
+ I
1558
+ 0
1559
+ I
1560
+ 0
1561
+ I
1562
+ -2
1563
+ p
1564
+ 7
1565
+ x
1566
+ 3
1567
+ arg
1568
+ M
1569
+ 1
1570
+ p
1571
+ 2
1572
+ x
1573
+ 9
1574
+ for_block
1575
+ t
1576
+ n
1577
+ x
1578
+ 3
1579
+ Alf
1580
+ i
1581
+ 15
1582
+ 7
1583
+ 0
1584
+ 64
1585
+ 7
1586
+ 1
1587
+ 64
1588
+ 7
1589
+ 2
1590
+ 64
1591
+ 7
1592
+ 3
1593
+ 64
1594
+ 35
1595
+ 4
1596
+ 11
1597
+ I
1598
+ 5
1599
+ I
1600
+ 0
1601
+ I
1602
+ 0
1603
+ I
1604
+ 0
1605
+ I
1606
+ -2
1607
+ p
1608
+ 4
1609
+ s
1610
+ 5
1611
+ hello
1612
+ s
1613
+ 3
1614
+ who
1615
+ s
1616
+ 6
1617
+ hello2
1618
+ s
1619
+ 1
1620
+ 2
1621
+ p
1622
+ 3
1623
+ I
1624
+ 0
1625
+ I
1626
+ 26
1627
+ I
1628
+ f
1629
+ x
1630
+ 71
1631
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1632
+ p
1633
+ 0
1634
+ x
1635
+ 3
1636
+ let
1637
+ x
1638
+ 8
1639
+ expected
1640
+ M
1641
+ 1
1642
+ p
1643
+ 2
1644
+ x
1645
+ 9
1646
+ for_block
1647
+ t
1648
+ n
1649
+ x
1650
+ 3
1651
+ Alf
1652
+ i
1653
+ 26
1654
+ 44
1655
+ 43
1656
+ 0
1657
+ 80
1658
+ 49
1659
+ 1
1660
+ 1
1661
+ 13
1662
+ 7
1663
+ 2
1664
+ 7
1665
+ 3
1666
+ 64
1667
+ 49
1668
+ 4
1669
+ 2
1670
+ 15
1671
+ 13
1672
+ 7
1673
+ 5
1674
+ 80
1675
+ 49
1676
+ 4
1677
+ 2
1678
+ 15
1679
+ 11
1680
+ I
1681
+ 5
1682
+ I
1683
+ 0
1684
+ I
1685
+ 0
1686
+ I
1687
+ 0
1688
+ I
1689
+ -2
1690
+ p
1691
+ 6
1692
+ x
1693
+ 4
1694
+ Hash
1695
+ x
1696
+ 16
1697
+ new_from_literal
1698
+ x
1699
+ 5
1700
+ hello
1701
+ s
1702
+ 3
1703
+ alf
1704
+ x
1705
+ 3
1706
+ []=
1707
+ x
1708
+ 6
1709
+ hello2
1710
+ p
1711
+ 3
1712
+ I
1713
+ 0
1714
+ I
1715
+ 28
1716
+ I
1717
+ 1a
1718
+ x
1719
+ 71
1720
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1721
+ p
1722
+ 0
1723
+ M
1724
+ 1
1725
+ p
1726
+ 2
1727
+ x
1728
+ 9
1729
+ for_block
1730
+ t
1731
+ n
1732
+ x
1733
+ 3
1734
+ Alf
1735
+ i
1736
+ 14
1737
+ 5
1738
+ 5
1739
+ 5
1740
+ 48
1741
+ 0
1742
+ 47
1743
+ 49
1744
+ 1
1745
+ 1
1746
+ 47
1747
+ 49
1748
+ 2
1749
+ 1
1750
+ 11
1751
+ I
1752
+ 4
1753
+ I
1754
+ 0
1755
+ I
1756
+ 0
1757
+ I
1758
+ 0
1759
+ I
1760
+ -2
1761
+ p
1762
+ 3
1763
+ x
1764
+ 8
1765
+ expected
1766
+ x
1767
+ 3
1768
+ eql
1769
+ x
1770
+ 6
1771
+ should
1772
+ p
1773
+ 3
1774
+ I
1775
+ 0
1776
+ I
1777
+ 2a
1778
+ I
1779
+ e
1780
+ x
1781
+ 71
1782
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1783
+ p
1784
+ 0
1785
+ x
1786
+ 2
1787
+ it
1788
+ p
1789
+ 7
1790
+ I
1791
+ 0
1792
+ I
1793
+ 26
1794
+ I
1795
+ a
1796
+ I
1797
+ 27
1798
+ I
1799
+ 14
1800
+ I
1801
+ 2a
1802
+ I
1803
+ 1c
1804
+ x
1805
+ 71
1806
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1807
+ p
1808
+ 0
1809
+ p
1810
+ 11
1811
+ I
1812
+ 0
1813
+ I
1814
+ 8
1815
+ I
1816
+ 8
1817
+ I
1818
+ a
1819
+ I
1820
+ 13
1821
+ I
1822
+ f
1823
+ I
1824
+ 1e
1825
+ I
1826
+ 1b
1827
+ I
1828
+ 29
1829
+ I
1830
+ 25
1831
+ I
1832
+ 34
1833
+ x
1834
+ 71
1835
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1836
+ p
1837
+ 0
1838
+ x
1839
+ 8
1840
+ describe
1841
+ s
1842
+ 9
1843
+ from_argv
1844
+ M
1845
+ 1
1846
+ p
1847
+ 2
1848
+ x
1849
+ 9
1850
+ for_block
1851
+ t
1852
+ n
1853
+ x
1854
+ 3
1855
+ Alf
1856
+ i
1857
+ 19
1858
+ 5
1859
+ 56
1860
+ 0
1861
+ 47
1862
+ 50
1863
+ 1
1864
+ 0
1865
+ 15
1866
+ 5
1867
+ 7
1868
+ 2
1869
+ 64
1870
+ 56
1871
+ 3
1872
+ 47
1873
+ 50
1874
+ 4
1875
+ 1
1876
+ 11
1877
+ I
1878
+ 4
1879
+ I
1880
+ 0
1881
+ I
1882
+ 0
1883
+ I
1884
+ 0
1885
+ I
1886
+ -2
1887
+ p
1888
+ 5
1889
+ M
1890
+ 1
1891
+ p
1892
+ 2
1893
+ x
1894
+ 9
1895
+ for_block
1896
+ t
1897
+ n
1898
+ x
1899
+ 3
1900
+ Alf
1901
+ i
1902
+ 16
1903
+ 45
1904
+ 0
1905
+ 1
1906
+ 5
1907
+ 48
1908
+ 2
1909
+ 49
1910
+ 3
1911
+ 1
1912
+ 5
1913
+ 48
1914
+ 4
1915
+ 49
1916
+ 5
1917
+ 1
1918
+ 11
1919
+ I
1920
+ 3
1921
+ I
1922
+ 0
1923
+ I
1924
+ 0
1925
+ I
1926
+ 0
1927
+ I
1928
+ -2
1929
+ p
1930
+ 6
1931
+ x
1932
+ 16
1933
+ TupleComputation
1934
+ n
1935
+ x
1936
+ 4
1937
+ argv
1938
+ x
1939
+ 9
1940
+ from_argv
1941
+ x
1942
+ 6
1943
+ handle
1944
+ x
1945
+ 8
1946
+ evaluate
1947
+ p
1948
+ 3
1949
+ I
1950
+ 0
1951
+ I
1952
+ 2f
1953
+ I
1954
+ 10
1955
+ x
1956
+ 71
1957
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
1958
+ p
1959
+ 0
1960
+ x
1961
+ 7
1962
+ subject
1963
+ s
1964
+ 28
1965
+ from an Array with coercions
1966
+ M
1967
+ 1
1968
+ p
1969
+ 2
1970
+ x
1971
+ 9
1972
+ for_block
1973
+ t
1974
+ n
1975
+ x
1976
+ 3
1977
+ Alf
1978
+ i
1979
+ 28
1980
+ 5
1981
+ 7
1982
+ 0
1983
+ 56
1984
+ 1
1985
+ 47
1986
+ 50
1987
+ 2
1988
+ 1
1989
+ 15
1990
+ 5
1991
+ 7
1992
+ 3
1993
+ 56
1994
+ 4
1995
+ 47
1996
+ 50
1997
+ 2
1998
+ 1
1999
+ 15
2000
+ 5
2001
+ 56
2002
+ 5
2003
+ 47
2004
+ 50
2005
+ 6
2006
+ 0
2007
+ 11
2008
+ I
2009
+ 4
2010
+ I
2011
+ 0
2012
+ I
2013
+ 0
2014
+ I
2015
+ 0
2016
+ I
2017
+ -2
2018
+ p
2019
+ 7
2020
+ x
2021
+ 4
2022
+ argv
2023
+ M
2024
+ 1
2025
+ p
2026
+ 2
2027
+ x
2028
+ 9
2029
+ for_block
2030
+ t
2031
+ n
2032
+ x
2033
+ 3
2034
+ Alf
2035
+ i
2036
+ 15
2037
+ 7
2038
+ 0
2039
+ 64
2040
+ 7
2041
+ 1
2042
+ 64
2043
+ 7
2044
+ 2
2045
+ 64
2046
+ 7
2047
+ 3
2048
+ 64
2049
+ 35
2050
+ 4
2051
+ 11
2052
+ I
2053
+ 5
2054
+ I
2055
+ 0
2056
+ I
2057
+ 0
2058
+ I
2059
+ 0
2060
+ I
2061
+ -2
2062
+ p
2063
+ 4
2064
+ s
2065
+ 5
2066
+ hello
2067
+ s
2068
+ 3
2069
+ who
2070
+ s
2071
+ 6
2072
+ hello2
2073
+ s
2074
+ 1
2075
+ 2
2076
+ p
2077
+ 3
2078
+ I
2079
+ 0
2080
+ I
2081
+ 32
2082
+ I
2083
+ f
2084
+ x
2085
+ 71
2086
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2087
+ p
2088
+ 0
2089
+ x
2090
+ 3
2091
+ let
2092
+ x
2093
+ 8
2094
+ expected
2095
+ M
2096
+ 1
2097
+ p
2098
+ 2
2099
+ x
2100
+ 9
2101
+ for_block
2102
+ t
2103
+ n
2104
+ x
2105
+ 3
2106
+ Alf
2107
+ i
2108
+ 26
2109
+ 44
2110
+ 43
2111
+ 0
2112
+ 80
2113
+ 49
2114
+ 1
2115
+ 1
2116
+ 13
2117
+ 7
2118
+ 2
2119
+ 7
2120
+ 3
2121
+ 64
2122
+ 49
2123
+ 4
2124
+ 2
2125
+ 15
2126
+ 13
2127
+ 7
2128
+ 5
2129
+ 80
2130
+ 49
2131
+ 4
2132
+ 2
2133
+ 15
2134
+ 11
2135
+ I
2136
+ 5
2137
+ I
2138
+ 0
2139
+ I
2140
+ 0
2141
+ I
2142
+ 0
2143
+ I
2144
+ -2
2145
+ p
2146
+ 6
2147
+ x
2148
+ 4
2149
+ Hash
2150
+ x
2151
+ 16
2152
+ new_from_literal
2153
+ x
2154
+ 5
2155
+ hello
2156
+ s
2157
+ 3
2158
+ alf
2159
+ x
2160
+ 3
2161
+ []=
2162
+ x
2163
+ 6
2164
+ hello2
2165
+ p
2166
+ 3
2167
+ I
2168
+ 0
2169
+ I
2170
+ 34
2171
+ I
2172
+ 1a
2173
+ x
2174
+ 71
2175
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2176
+ p
2177
+ 0
2178
+ M
2179
+ 1
2180
+ p
2181
+ 2
2182
+ x
2183
+ 9
2184
+ for_block
2185
+ t
2186
+ n
2187
+ x
2188
+ 3
2189
+ Alf
2190
+ i
2191
+ 14
2192
+ 5
2193
+ 5
2194
+ 5
2195
+ 48
2196
+ 0
2197
+ 47
2198
+ 49
2199
+ 1
2200
+ 1
2201
+ 47
2202
+ 49
2203
+ 2
2204
+ 1
2205
+ 11
2206
+ I
2207
+ 4
2208
+ I
2209
+ 0
2210
+ I
2211
+ 0
2212
+ I
2213
+ 0
2214
+ I
2215
+ -2
2216
+ p
2217
+ 3
2218
+ x
2219
+ 8
2220
+ expected
2221
+ x
2222
+ 3
2223
+ eql
2224
+ x
2225
+ 6
2226
+ should
2227
+ p
2228
+ 3
2229
+ I
2230
+ 0
2231
+ I
2232
+ 36
2233
+ I
2234
+ e
2235
+ x
2236
+ 71
2237
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2238
+ p
2239
+ 0
2240
+ x
2241
+ 2
2242
+ it
2243
+ p
2244
+ 7
2245
+ I
2246
+ 0
2247
+ I
2248
+ 32
2249
+ I
2250
+ a
2251
+ I
2252
+ 33
2253
+ I
2254
+ 14
2255
+ I
2256
+ 36
2257
+ I
2258
+ 1c
2259
+ x
2260
+ 71
2261
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2262
+ p
2263
+ 0
2264
+ x
2265
+ 8
2266
+ describe
2267
+ p
2268
+ 5
2269
+ I
2270
+ 0
2271
+ I
2272
+ 2f
2273
+ I
2274
+ 8
2275
+ I
2276
+ 31
2277
+ I
2278
+ 13
2279
+ x
2280
+ 71
2281
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2282
+ p
2283
+ 0
2284
+ p
2285
+ 7
2286
+ I
2287
+ 0
2288
+ I
2289
+ 5
2290
+ I
2291
+ a
2292
+ I
2293
+ 7
2294
+ I
2295
+ 15
2296
+ I
2297
+ 2e
2298
+ I
2299
+ 20
2300
+ x
2301
+ 71
2302
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2303
+ p
2304
+ 0
2305
+ x
2306
+ 8
2307
+ describe
2308
+ p
2309
+ 3
2310
+ I
2311
+ 2
2312
+ I
2313
+ 3
2314
+ I
2315
+ d
2316
+ x
2317
+ 71
2318
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2319
+ p
2320
+ 0
2321
+ x
2322
+ 13
2323
+ attach_method
2324
+ p
2325
+ 5
2326
+ I
2327
+ 0
2328
+ I
2329
+ 1
2330
+ I
2331
+ 9
2332
+ I
2333
+ 2
2334
+ I
2335
+ 25
2336
+ x
2337
+ 71
2338
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_computation.rb
2339
+ p
2340
+ 0