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,3168 @@
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
+ 14
111
+ TuplePredicate
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
+ 46
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
+ 4
225
+ 10
226
+ 49
227
+ 9
228
+ 2
229
+ 15
230
+ 49
231
+ 10
232
+ 1
233
+ 11
234
+ I
235
+ 6
236
+ I
237
+ 0
238
+ I
239
+ 0
240
+ I
241
+ 0
242
+ I
243
+ -2
244
+ p
245
+ 11
246
+ x
247
+ 5
248
+ Tools
249
+ n
250
+ x
251
+ 11
252
+ TupleHandle
253
+ x
254
+ 3
255
+ new
256
+ x
257
+ 8
258
+ allocate
259
+ x
260
+ 10
261
+ initialize
262
+ x
263
+ 4
264
+ Hash
265
+ x
266
+ 16
267
+ new_from_literal
268
+ x
269
+ 6
270
+ status
271
+ x
272
+ 3
273
+ []=
274
+ x
275
+ 3
276
+ set
277
+ p
278
+ 3
279
+ I
280
+ 0
281
+ I
282
+ 5
283
+ I
284
+ 2e
285
+ x
286
+ 69
287
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
288
+ p
289
+ 0
290
+ x
291
+ 3
292
+ let
293
+ s
294
+ 6
295
+ coerce
296
+ M
297
+ 1
298
+ p
299
+ 2
300
+ x
301
+ 9
302
+ for_block
303
+ t
304
+ n
305
+ x
306
+ 3
307
+ Alf
308
+ i
309
+ 118
310
+ 5
311
+ 56
312
+ 0
313
+ 47
314
+ 50
315
+ 1
316
+ 0
317
+ 15
318
+ 5
319
+ 7
320
+ 2
321
+ 64
322
+ 56
323
+ 3
324
+ 47
325
+ 50
326
+ 4
327
+ 1
328
+ 15
329
+ 5
330
+ 7
331
+ 5
332
+ 64
333
+ 56
334
+ 6
335
+ 47
336
+ 50
337
+ 4
338
+ 1
339
+ 15
340
+ 5
341
+ 7
342
+ 7
343
+ 64
344
+ 56
345
+ 8
346
+ 47
347
+ 50
348
+ 4
349
+ 1
350
+ 15
351
+ 5
352
+ 7
353
+ 9
354
+ 64
355
+ 56
356
+ 10
357
+ 47
358
+ 50
359
+ 4
360
+ 1
361
+ 15
362
+ 5
363
+ 7
364
+ 11
365
+ 64
366
+ 56
367
+ 12
368
+ 47
369
+ 50
370
+ 4
371
+ 1
372
+ 15
373
+ 5
374
+ 7
375
+ 13
376
+ 64
377
+ 56
378
+ 14
379
+ 47
380
+ 50
381
+ 4
382
+ 1
383
+ 15
384
+ 5
385
+ 7
386
+ 15
387
+ 64
388
+ 56
389
+ 16
390
+ 47
391
+ 50
392
+ 4
393
+ 1
394
+ 15
395
+ 5
396
+ 7
397
+ 17
398
+ 64
399
+ 56
400
+ 18
401
+ 47
402
+ 50
403
+ 4
404
+ 1
405
+ 15
406
+ 5
407
+ 7
408
+ 19
409
+ 64
410
+ 56
411
+ 20
412
+ 47
413
+ 50
414
+ 4
415
+ 1
416
+ 15
417
+ 5
418
+ 7
419
+ 21
420
+ 64
421
+ 56
422
+ 22
423
+ 47
424
+ 50
425
+ 4
426
+ 1
427
+ 11
428
+ I
429
+ 4
430
+ I
431
+ 0
432
+ I
433
+ 0
434
+ I
435
+ 0
436
+ I
437
+ -2
438
+ p
439
+ 23
440
+ M
441
+ 1
442
+ p
443
+ 2
444
+ x
445
+ 9
446
+ for_block
447
+ t
448
+ n
449
+ x
450
+ 3
451
+ Alf
452
+ i
453
+ 16
454
+ 45
455
+ 0
456
+ 1
457
+ 5
458
+ 48
459
+ 2
460
+ 49
461
+ 3
462
+ 1
463
+ 5
464
+ 48
465
+ 4
466
+ 49
467
+ 5
468
+ 1
469
+ 11
470
+ I
471
+ 3
472
+ I
473
+ 0
474
+ I
475
+ 0
476
+ I
477
+ 0
478
+ I
479
+ -2
480
+ p
481
+ 6
482
+ x
483
+ 14
484
+ TuplePredicate
485
+ n
486
+ x
487
+ 3
488
+ arg
489
+ x
490
+ 6
491
+ coerce
492
+ x
493
+ 6
494
+ handle
495
+ x
496
+ 8
497
+ evaluate
498
+ p
499
+ 3
500
+ I
501
+ 0
502
+ I
503
+ 8
504
+ I
505
+ 10
506
+ x
507
+ 69
508
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
509
+ p
510
+ 0
511
+ x
512
+ 7
513
+ subject
514
+ s
515
+ 19
516
+ from TuplePredicate
517
+ M
518
+ 1
519
+ p
520
+ 2
521
+ x
522
+ 9
523
+ for_block
524
+ t
525
+ n
526
+ x
527
+ 3
528
+ Alf
529
+ i
530
+ 18
531
+ 5
532
+ 7
533
+ 0
534
+ 56
535
+ 1
536
+ 47
537
+ 50
538
+ 2
539
+ 1
540
+ 15
541
+ 5
542
+ 56
543
+ 3
544
+ 47
545
+ 50
546
+ 4
547
+ 0
548
+ 11
549
+ I
550
+ 4
551
+ I
552
+ 0
553
+ I
554
+ 0
555
+ I
556
+ 0
557
+ I
558
+ -2
559
+ p
560
+ 5
561
+ x
562
+ 3
563
+ arg
564
+ M
565
+ 1
566
+ p
567
+ 2
568
+ x
569
+ 9
570
+ for_block
571
+ t
572
+ n
573
+ x
574
+ 3
575
+ Alf
576
+ i
577
+ 39
578
+ 45
579
+ 0
580
+ 1
581
+ 13
582
+ 71
583
+ 2
584
+ 47
585
+ 9
586
+ 28
587
+ 47
588
+ 49
589
+ 3
590
+ 0
591
+ 13
592
+ 5
593
+ 56
594
+ 4
595
+ 47
596
+ 50
597
+ 5
598
+ 0
599
+ 47
600
+ 49
601
+ 6
602
+ 1
603
+ 15
604
+ 8
605
+ 38
606
+ 5
607
+ 56
608
+ 7
609
+ 47
610
+ 50
611
+ 5
612
+ 0
613
+ 49
614
+ 2
615
+ 1
616
+ 11
617
+ I
618
+ 5
619
+ I
620
+ 0
621
+ I
622
+ 0
623
+ I
624
+ 0
625
+ I
626
+ -2
627
+ p
628
+ 8
629
+ x
630
+ 14
631
+ TuplePredicate
632
+ n
633
+ x
634
+ 3
635
+ new
636
+ x
637
+ 8
638
+ allocate
639
+ M
640
+ 1
641
+ p
642
+ 2
643
+ x
644
+ 9
645
+ for_block
646
+ t
647
+ n
648
+ x
649
+ 3
650
+ Alf
651
+ i
652
+ 8
653
+ 5
654
+ 48
655
+ 0
656
+ 4
657
+ 10
658
+ 83
659
+ 1
660
+ 11
661
+ I
662
+ 3
663
+ I
664
+ 0
665
+ I
666
+ 0
667
+ I
668
+ 0
669
+ I
670
+ -2
671
+ p
672
+ 2
673
+ x
674
+ 6
675
+ status
676
+ x
677
+ 2
678
+ ==
679
+ p
680
+ 3
681
+ I
682
+ 0
683
+ I
684
+ b
685
+ I
686
+ 8
687
+ x
688
+ 69
689
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
690
+ p
691
+ 0
692
+ x
693
+ 6
694
+ lambda
695
+ x
696
+ 10
697
+ initialize
698
+ M
699
+ 1
700
+ p
701
+ 2
702
+ x
703
+ 9
704
+ for_block
705
+ t
706
+ n
707
+ x
708
+ 3
709
+ Alf
710
+ i
711
+ 8
712
+ 5
713
+ 48
714
+ 0
715
+ 4
716
+ 10
717
+ 83
718
+ 1
719
+ 11
720
+ I
721
+ 3
722
+ I
723
+ 0
724
+ I
725
+ 0
726
+ I
727
+ 0
728
+ I
729
+ -2
730
+ p
731
+ 2
732
+ x
733
+ 6
734
+ status
735
+ x
736
+ 2
737
+ ==
738
+ p
739
+ 3
740
+ I
741
+ 0
742
+ I
743
+ b
744
+ I
745
+ 8
746
+ x
747
+ 69
748
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
749
+ p
750
+ 0
751
+ p
752
+ 3
753
+ I
754
+ 0
755
+ I
756
+ b
757
+ I
758
+ 27
759
+ x
760
+ 69
761
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
762
+ p
763
+ 0
764
+ x
765
+ 3
766
+ let
767
+ M
768
+ 1
769
+ p
770
+ 2
771
+ x
772
+ 9
773
+ for_block
774
+ t
775
+ n
776
+ x
777
+ 3
778
+ Alf
779
+ i
780
+ 12
781
+ 5
782
+ 5
783
+ 2
784
+ 47
785
+ 49
786
+ 0
787
+ 1
788
+ 47
789
+ 49
790
+ 1
791
+ 1
792
+ 11
793
+ I
794
+ 4
795
+ I
796
+ 0
797
+ I
798
+ 0
799
+ I
800
+ 0
801
+ I
802
+ -2
803
+ p
804
+ 2
805
+ x
806
+ 3
807
+ eql
808
+ x
809
+ 6
810
+ should
811
+ p
812
+ 3
813
+ I
814
+ 0
815
+ I
816
+ c
817
+ I
818
+ c
819
+ x
820
+ 69
821
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
822
+ p
823
+ 0
824
+ x
825
+ 2
826
+ it
827
+ p
828
+ 5
829
+ I
830
+ 0
831
+ I
832
+ b
833
+ I
834
+ a
835
+ I
836
+ c
837
+ I
838
+ 12
839
+ x
840
+ 69
841
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
842
+ p
843
+ 0
844
+ x
845
+ 8
846
+ describe
847
+ s
848
+ 9
849
+ from true
850
+ M
851
+ 1
852
+ p
853
+ 2
854
+ x
855
+ 9
856
+ for_block
857
+ t
858
+ n
859
+ x
860
+ 3
861
+ Alf
862
+ i
863
+ 18
864
+ 5
865
+ 7
866
+ 0
867
+ 56
868
+ 1
869
+ 47
870
+ 50
871
+ 2
872
+ 1
873
+ 15
874
+ 5
875
+ 56
876
+ 3
877
+ 47
878
+ 50
879
+ 4
880
+ 0
881
+ 11
882
+ I
883
+ 4
884
+ I
885
+ 0
886
+ I
887
+ 0
888
+ I
889
+ 0
890
+ I
891
+ -2
892
+ p
893
+ 5
894
+ x
895
+ 3
896
+ arg
897
+ M
898
+ 1
899
+ p
900
+ 2
901
+ x
902
+ 9
903
+ for_block
904
+ t
905
+ n
906
+ x
907
+ 3
908
+ Alf
909
+ i
910
+ 2
911
+ 2
912
+ 11
913
+ I
914
+ 2
915
+ I
916
+ 0
917
+ I
918
+ 0
919
+ I
920
+ 0
921
+ I
922
+ -2
923
+ p
924
+ 0
925
+ p
926
+ 3
927
+ I
928
+ 0
929
+ I
930
+ 10
931
+ I
932
+ 2
933
+ x
934
+ 69
935
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
936
+ p
937
+ 0
938
+ x
939
+ 3
940
+ let
941
+ M
942
+ 1
943
+ p
944
+ 2
945
+ x
946
+ 9
947
+ for_block
948
+ t
949
+ n
950
+ x
951
+ 3
952
+ Alf
953
+ i
954
+ 12
955
+ 5
956
+ 5
957
+ 2
958
+ 47
959
+ 49
960
+ 0
961
+ 1
962
+ 47
963
+ 49
964
+ 1
965
+ 1
966
+ 11
967
+ I
968
+ 4
969
+ I
970
+ 0
971
+ I
972
+ 0
973
+ I
974
+ 0
975
+ I
976
+ -2
977
+ p
978
+ 2
979
+ x
980
+ 3
981
+ eql
982
+ x
983
+ 6
984
+ should
985
+ p
986
+ 3
987
+ I
988
+ 0
989
+ I
990
+ 11
991
+ I
992
+ c
993
+ x
994
+ 69
995
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
996
+ p
997
+ 0
998
+ x
999
+ 2
1000
+ it
1001
+ p
1002
+ 5
1003
+ I
1004
+ 0
1005
+ I
1006
+ 10
1007
+ I
1008
+ a
1009
+ I
1010
+ 11
1011
+ I
1012
+ 12
1013
+ x
1014
+ 69
1015
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1016
+ p
1017
+ 0
1018
+ s
1019
+ 10
1020
+ from false
1021
+ M
1022
+ 1
1023
+ p
1024
+ 2
1025
+ x
1026
+ 9
1027
+ for_block
1028
+ t
1029
+ n
1030
+ x
1031
+ 3
1032
+ Alf
1033
+ i
1034
+ 18
1035
+ 5
1036
+ 7
1037
+ 0
1038
+ 56
1039
+ 1
1040
+ 47
1041
+ 50
1042
+ 2
1043
+ 1
1044
+ 15
1045
+ 5
1046
+ 56
1047
+ 3
1048
+ 47
1049
+ 50
1050
+ 4
1051
+ 0
1052
+ 11
1053
+ I
1054
+ 4
1055
+ I
1056
+ 0
1057
+ I
1058
+ 0
1059
+ I
1060
+ 0
1061
+ I
1062
+ -2
1063
+ p
1064
+ 5
1065
+ x
1066
+ 3
1067
+ arg
1068
+ M
1069
+ 1
1070
+ p
1071
+ 2
1072
+ x
1073
+ 9
1074
+ for_block
1075
+ t
1076
+ n
1077
+ x
1078
+ 3
1079
+ Alf
1080
+ i
1081
+ 2
1082
+ 3
1083
+ 11
1084
+ I
1085
+ 2
1086
+ I
1087
+ 0
1088
+ I
1089
+ 0
1090
+ I
1091
+ 0
1092
+ I
1093
+ -2
1094
+ p
1095
+ 0
1096
+ p
1097
+ 3
1098
+ I
1099
+ 0
1100
+ I
1101
+ 15
1102
+ I
1103
+ 2
1104
+ x
1105
+ 69
1106
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1107
+ p
1108
+ 0
1109
+ x
1110
+ 3
1111
+ let
1112
+ M
1113
+ 1
1114
+ p
1115
+ 2
1116
+ x
1117
+ 9
1118
+ for_block
1119
+ t
1120
+ n
1121
+ x
1122
+ 3
1123
+ Alf
1124
+ i
1125
+ 12
1126
+ 5
1127
+ 5
1128
+ 3
1129
+ 47
1130
+ 49
1131
+ 0
1132
+ 1
1133
+ 47
1134
+ 49
1135
+ 1
1136
+ 1
1137
+ 11
1138
+ I
1139
+ 4
1140
+ I
1141
+ 0
1142
+ I
1143
+ 0
1144
+ I
1145
+ 0
1146
+ I
1147
+ -2
1148
+ p
1149
+ 2
1150
+ x
1151
+ 3
1152
+ eql
1153
+ x
1154
+ 6
1155
+ should
1156
+ p
1157
+ 3
1158
+ I
1159
+ 0
1160
+ I
1161
+ 16
1162
+ I
1163
+ c
1164
+ x
1165
+ 69
1166
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1167
+ p
1168
+ 0
1169
+ x
1170
+ 2
1171
+ it
1172
+ p
1173
+ 5
1174
+ I
1175
+ 0
1176
+ I
1177
+ 15
1178
+ I
1179
+ a
1180
+ I
1181
+ 16
1182
+ I
1183
+ 12
1184
+ x
1185
+ 69
1186
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1187
+ p
1188
+ 0
1189
+ s
1190
+ 9
1191
+ from Proc
1192
+ M
1193
+ 1
1194
+ p
1195
+ 2
1196
+ x
1197
+ 9
1198
+ for_block
1199
+ t
1200
+ n
1201
+ x
1202
+ 3
1203
+ Alf
1204
+ i
1205
+ 18
1206
+ 5
1207
+ 7
1208
+ 0
1209
+ 56
1210
+ 1
1211
+ 47
1212
+ 50
1213
+ 2
1214
+ 1
1215
+ 15
1216
+ 5
1217
+ 56
1218
+ 3
1219
+ 47
1220
+ 50
1221
+ 4
1222
+ 0
1223
+ 11
1224
+ I
1225
+ 4
1226
+ I
1227
+ 0
1228
+ I
1229
+ 0
1230
+ I
1231
+ 0
1232
+ I
1233
+ -2
1234
+ p
1235
+ 5
1236
+ x
1237
+ 3
1238
+ arg
1239
+ M
1240
+ 1
1241
+ p
1242
+ 2
1243
+ x
1244
+ 9
1245
+ for_block
1246
+ t
1247
+ n
1248
+ x
1249
+ 3
1250
+ Alf
1251
+ i
1252
+ 8
1253
+ 5
1254
+ 56
1255
+ 0
1256
+ 47
1257
+ 50
1258
+ 1
1259
+ 0
1260
+ 11
1261
+ I
1262
+ 3
1263
+ I
1264
+ 0
1265
+ I
1266
+ 0
1267
+ I
1268
+ 0
1269
+ I
1270
+ -2
1271
+ p
1272
+ 2
1273
+ M
1274
+ 1
1275
+ p
1276
+ 2
1277
+ x
1278
+ 9
1279
+ for_block
1280
+ t
1281
+ n
1282
+ x
1283
+ 3
1284
+ Alf
1285
+ i
1286
+ 8
1287
+ 5
1288
+ 48
1289
+ 0
1290
+ 4
1291
+ 10
1292
+ 83
1293
+ 1
1294
+ 11
1295
+ I
1296
+ 3
1297
+ I
1298
+ 0
1299
+ I
1300
+ 0
1301
+ I
1302
+ 0
1303
+ I
1304
+ -2
1305
+ p
1306
+ 2
1307
+ x
1308
+ 6
1309
+ status
1310
+ x
1311
+ 2
1312
+ ==
1313
+ p
1314
+ 3
1315
+ I
1316
+ 0
1317
+ I
1318
+ 1a
1319
+ I
1320
+ 8
1321
+ x
1322
+ 69
1323
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1324
+ p
1325
+ 0
1326
+ x
1327
+ 6
1328
+ lambda
1329
+ p
1330
+ 3
1331
+ I
1332
+ 0
1333
+ I
1334
+ 1a
1335
+ I
1336
+ 8
1337
+ x
1338
+ 69
1339
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1340
+ p
1341
+ 0
1342
+ x
1343
+ 3
1344
+ let
1345
+ M
1346
+ 1
1347
+ p
1348
+ 2
1349
+ x
1350
+ 9
1351
+ for_block
1352
+ t
1353
+ n
1354
+ x
1355
+ 3
1356
+ Alf
1357
+ i
1358
+ 12
1359
+ 5
1360
+ 5
1361
+ 2
1362
+ 47
1363
+ 49
1364
+ 0
1365
+ 1
1366
+ 47
1367
+ 49
1368
+ 1
1369
+ 1
1370
+ 11
1371
+ I
1372
+ 4
1373
+ I
1374
+ 0
1375
+ I
1376
+ 0
1377
+ I
1378
+ 0
1379
+ I
1380
+ -2
1381
+ p
1382
+ 2
1383
+ x
1384
+ 3
1385
+ eql
1386
+ x
1387
+ 6
1388
+ should
1389
+ p
1390
+ 3
1391
+ I
1392
+ 0
1393
+ I
1394
+ 1b
1395
+ I
1396
+ c
1397
+ x
1398
+ 69
1399
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1400
+ p
1401
+ 0
1402
+ x
1403
+ 2
1404
+ it
1405
+ p
1406
+ 5
1407
+ I
1408
+ 0
1409
+ I
1410
+ 1a
1411
+ I
1412
+ a
1413
+ I
1414
+ 1b
1415
+ I
1416
+ 12
1417
+ x
1418
+ 69
1419
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1420
+ p
1421
+ 0
1422
+ s
1423
+ 11
1424
+ from String
1425
+ M
1426
+ 1
1427
+ p
1428
+ 2
1429
+ x
1430
+ 9
1431
+ for_block
1432
+ t
1433
+ n
1434
+ x
1435
+ 3
1436
+ Alf
1437
+ i
1438
+ 18
1439
+ 5
1440
+ 7
1441
+ 0
1442
+ 56
1443
+ 1
1444
+ 47
1445
+ 50
1446
+ 2
1447
+ 1
1448
+ 15
1449
+ 5
1450
+ 56
1451
+ 3
1452
+ 47
1453
+ 50
1454
+ 4
1455
+ 0
1456
+ 11
1457
+ I
1458
+ 4
1459
+ I
1460
+ 0
1461
+ I
1462
+ 0
1463
+ I
1464
+ 0
1465
+ I
1466
+ -2
1467
+ p
1468
+ 5
1469
+ x
1470
+ 3
1471
+ arg
1472
+ M
1473
+ 1
1474
+ p
1475
+ 2
1476
+ x
1477
+ 9
1478
+ for_block
1479
+ t
1480
+ n
1481
+ x
1482
+ 3
1483
+ Alf
1484
+ i
1485
+ 4
1486
+ 7
1487
+ 0
1488
+ 64
1489
+ 11
1490
+ I
1491
+ 2
1492
+ I
1493
+ 0
1494
+ I
1495
+ 0
1496
+ I
1497
+ 0
1498
+ I
1499
+ -2
1500
+ p
1501
+ 1
1502
+ s
1503
+ 12
1504
+ status == 10
1505
+ p
1506
+ 3
1507
+ I
1508
+ 0
1509
+ I
1510
+ 1f
1511
+ I
1512
+ 4
1513
+ x
1514
+ 69
1515
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1516
+ p
1517
+ 0
1518
+ x
1519
+ 3
1520
+ let
1521
+ M
1522
+ 1
1523
+ p
1524
+ 2
1525
+ x
1526
+ 9
1527
+ for_block
1528
+ t
1529
+ n
1530
+ x
1531
+ 3
1532
+ Alf
1533
+ i
1534
+ 12
1535
+ 5
1536
+ 5
1537
+ 2
1538
+ 47
1539
+ 49
1540
+ 0
1541
+ 1
1542
+ 47
1543
+ 49
1544
+ 1
1545
+ 1
1546
+ 11
1547
+ I
1548
+ 4
1549
+ I
1550
+ 0
1551
+ I
1552
+ 0
1553
+ I
1554
+ 0
1555
+ I
1556
+ -2
1557
+ p
1558
+ 2
1559
+ x
1560
+ 3
1561
+ eql
1562
+ x
1563
+ 6
1564
+ should
1565
+ p
1566
+ 3
1567
+ I
1568
+ 0
1569
+ I
1570
+ 20
1571
+ I
1572
+ c
1573
+ x
1574
+ 69
1575
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1576
+ p
1577
+ 0
1578
+ x
1579
+ 2
1580
+ it
1581
+ p
1582
+ 5
1583
+ I
1584
+ 0
1585
+ I
1586
+ 1f
1587
+ I
1588
+ a
1589
+ I
1590
+ 20
1591
+ I
1592
+ 12
1593
+ x
1594
+ 69
1595
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1596
+ p
1597
+ 0
1598
+ s
1599
+ 11
1600
+ from Symbol
1601
+ M
1602
+ 1
1603
+ p
1604
+ 2
1605
+ x
1606
+ 9
1607
+ for_block
1608
+ t
1609
+ n
1610
+ x
1611
+ 3
1612
+ Alf
1613
+ i
1614
+ 18
1615
+ 5
1616
+ 7
1617
+ 0
1618
+ 56
1619
+ 1
1620
+ 47
1621
+ 50
1622
+ 2
1623
+ 1
1624
+ 15
1625
+ 5
1626
+ 56
1627
+ 3
1628
+ 47
1629
+ 50
1630
+ 4
1631
+ 0
1632
+ 11
1633
+ I
1634
+ 4
1635
+ I
1636
+ 0
1637
+ I
1638
+ 0
1639
+ I
1640
+ 0
1641
+ I
1642
+ -2
1643
+ p
1644
+ 5
1645
+ x
1646
+ 3
1647
+ arg
1648
+ M
1649
+ 1
1650
+ p
1651
+ 2
1652
+ x
1653
+ 9
1654
+ for_block
1655
+ t
1656
+ n
1657
+ x
1658
+ 3
1659
+ Alf
1660
+ i
1661
+ 3
1662
+ 7
1663
+ 0
1664
+ 11
1665
+ I
1666
+ 2
1667
+ I
1668
+ 0
1669
+ I
1670
+ 0
1671
+ I
1672
+ 0
1673
+ I
1674
+ -2
1675
+ p
1676
+ 1
1677
+ x
1678
+ 6
1679
+ status
1680
+ p
1681
+ 3
1682
+ I
1683
+ 0
1684
+ I
1685
+ 24
1686
+ I
1687
+ 3
1688
+ x
1689
+ 69
1690
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1691
+ p
1692
+ 0
1693
+ x
1694
+ 3
1695
+ let
1696
+ M
1697
+ 1
1698
+ p
1699
+ 2
1700
+ x
1701
+ 9
1702
+ for_block
1703
+ t
1704
+ n
1705
+ x
1706
+ 3
1707
+ Alf
1708
+ i
1709
+ 13
1710
+ 5
1711
+ 5
1712
+ 4
1713
+ 10
1714
+ 47
1715
+ 49
1716
+ 0
1717
+ 1
1718
+ 47
1719
+ 49
1720
+ 1
1721
+ 1
1722
+ 11
1723
+ I
1724
+ 4
1725
+ I
1726
+ 0
1727
+ I
1728
+ 0
1729
+ I
1730
+ 0
1731
+ I
1732
+ -2
1733
+ p
1734
+ 2
1735
+ x
1736
+ 3
1737
+ eql
1738
+ x
1739
+ 6
1740
+ should
1741
+ p
1742
+ 3
1743
+ I
1744
+ 0
1745
+ I
1746
+ 25
1747
+ I
1748
+ d
1749
+ x
1750
+ 69
1751
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1752
+ p
1753
+ 0
1754
+ x
1755
+ 2
1756
+ it
1757
+ p
1758
+ 5
1759
+ I
1760
+ 0
1761
+ I
1762
+ 24
1763
+ I
1764
+ a
1765
+ I
1766
+ 25
1767
+ I
1768
+ 12
1769
+ x
1770
+ 69
1771
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1772
+ p
1773
+ 0
1774
+ s
1775
+ 26
1776
+ from Hash without coercion
1777
+ M
1778
+ 1
1779
+ p
1780
+ 2
1781
+ x
1782
+ 9
1783
+ for_block
1784
+ t
1785
+ n
1786
+ x
1787
+ 3
1788
+ Alf
1789
+ i
1790
+ 18
1791
+ 5
1792
+ 7
1793
+ 0
1794
+ 56
1795
+ 1
1796
+ 47
1797
+ 50
1798
+ 2
1799
+ 1
1800
+ 15
1801
+ 5
1802
+ 56
1803
+ 3
1804
+ 47
1805
+ 50
1806
+ 4
1807
+ 0
1808
+ 11
1809
+ I
1810
+ 4
1811
+ I
1812
+ 0
1813
+ I
1814
+ 0
1815
+ I
1816
+ 0
1817
+ I
1818
+ -2
1819
+ p
1820
+ 5
1821
+ x
1822
+ 3
1823
+ arg
1824
+ M
1825
+ 1
1826
+ p
1827
+ 2
1828
+ x
1829
+ 9
1830
+ for_block
1831
+ t
1832
+ n
1833
+ x
1834
+ 3
1835
+ Alf
1836
+ i
1837
+ 17
1838
+ 44
1839
+ 43
1840
+ 0
1841
+ 79
1842
+ 49
1843
+ 1
1844
+ 1
1845
+ 13
1846
+ 7
1847
+ 2
1848
+ 4
1849
+ 10
1850
+ 49
1851
+ 3
1852
+ 2
1853
+ 15
1854
+ 11
1855
+ I
1856
+ 5
1857
+ I
1858
+ 0
1859
+ I
1860
+ 0
1861
+ I
1862
+ 0
1863
+ I
1864
+ -2
1865
+ p
1866
+ 4
1867
+ x
1868
+ 4
1869
+ Hash
1870
+ x
1871
+ 16
1872
+ new_from_literal
1873
+ x
1874
+ 6
1875
+ status
1876
+ x
1877
+ 3
1878
+ []=
1879
+ p
1880
+ 3
1881
+ I
1882
+ 0
1883
+ I
1884
+ 29
1885
+ I
1886
+ 11
1887
+ x
1888
+ 69
1889
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1890
+ p
1891
+ 0
1892
+ x
1893
+ 3
1894
+ let
1895
+ M
1896
+ 1
1897
+ p
1898
+ 2
1899
+ x
1900
+ 9
1901
+ for_block
1902
+ t
1903
+ n
1904
+ x
1905
+ 3
1906
+ Alf
1907
+ i
1908
+ 12
1909
+ 5
1910
+ 5
1911
+ 2
1912
+ 47
1913
+ 49
1914
+ 0
1915
+ 1
1916
+ 47
1917
+ 49
1918
+ 1
1919
+ 1
1920
+ 11
1921
+ I
1922
+ 4
1923
+ I
1924
+ 0
1925
+ I
1926
+ 0
1927
+ I
1928
+ 0
1929
+ I
1930
+ -2
1931
+ p
1932
+ 2
1933
+ x
1934
+ 3
1935
+ eql
1936
+ x
1937
+ 6
1938
+ should
1939
+ p
1940
+ 3
1941
+ I
1942
+ 0
1943
+ I
1944
+ 2a
1945
+ I
1946
+ c
1947
+ x
1948
+ 69
1949
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1950
+ p
1951
+ 0
1952
+ x
1953
+ 2
1954
+ it
1955
+ p
1956
+ 5
1957
+ I
1958
+ 0
1959
+ I
1960
+ 29
1961
+ I
1962
+ a
1963
+ I
1964
+ 2a
1965
+ I
1966
+ 12
1967
+ x
1968
+ 69
1969
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1970
+ p
1971
+ 0
1972
+ s
1973
+ 23
1974
+ from Hash with coercion
1975
+ M
1976
+ 1
1977
+ p
1978
+ 2
1979
+ x
1980
+ 9
1981
+ for_block
1982
+ t
1983
+ n
1984
+ x
1985
+ 3
1986
+ Alf
1987
+ i
1988
+ 18
1989
+ 5
1990
+ 7
1991
+ 0
1992
+ 56
1993
+ 1
1994
+ 47
1995
+ 50
1996
+ 2
1997
+ 1
1998
+ 15
1999
+ 5
2000
+ 56
2001
+ 3
2002
+ 47
2003
+ 50
2004
+ 4
2005
+ 0
2006
+ 11
2007
+ I
2008
+ 4
2009
+ I
2010
+ 0
2011
+ I
2012
+ 0
2013
+ I
2014
+ 0
2015
+ I
2016
+ -2
2017
+ p
2018
+ 5
2019
+ x
2020
+ 3
2021
+ arg
2022
+ M
2023
+ 1
2024
+ p
2025
+ 2
2026
+ x
2027
+ 9
2028
+ for_block
2029
+ t
2030
+ n
2031
+ x
2032
+ 3
2033
+ Alf
2034
+ i
2035
+ 19
2036
+ 44
2037
+ 43
2038
+ 0
2039
+ 79
2040
+ 49
2041
+ 1
2042
+ 1
2043
+ 13
2044
+ 7
2045
+ 2
2046
+ 64
2047
+ 7
2048
+ 3
2049
+ 64
2050
+ 49
2051
+ 4
2052
+ 2
2053
+ 15
2054
+ 11
2055
+ I
2056
+ 5
2057
+ I
2058
+ 0
2059
+ I
2060
+ 0
2061
+ I
2062
+ 0
2063
+ I
2064
+ -2
2065
+ p
2066
+ 5
2067
+ x
2068
+ 4
2069
+ Hash
2070
+ x
2071
+ 16
2072
+ new_from_literal
2073
+ s
2074
+ 6
2075
+ status
2076
+ s
2077
+ 2
2078
+ 10
2079
+ x
2080
+ 3
2081
+ []=
2082
+ p
2083
+ 3
2084
+ I
2085
+ 0
2086
+ I
2087
+ 2e
2088
+ I
2089
+ 13
2090
+ x
2091
+ 69
2092
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2093
+ p
2094
+ 0
2095
+ x
2096
+ 3
2097
+ let
2098
+ M
2099
+ 1
2100
+ p
2101
+ 2
2102
+ x
2103
+ 9
2104
+ for_block
2105
+ t
2106
+ n
2107
+ x
2108
+ 3
2109
+ Alf
2110
+ i
2111
+ 12
2112
+ 5
2113
+ 5
2114
+ 2
2115
+ 47
2116
+ 49
2117
+ 0
2118
+ 1
2119
+ 47
2120
+ 49
2121
+ 1
2122
+ 1
2123
+ 11
2124
+ I
2125
+ 4
2126
+ I
2127
+ 0
2128
+ I
2129
+ 0
2130
+ I
2131
+ 0
2132
+ I
2133
+ -2
2134
+ p
2135
+ 2
2136
+ x
2137
+ 3
2138
+ eql
2139
+ x
2140
+ 6
2141
+ should
2142
+ p
2143
+ 3
2144
+ I
2145
+ 0
2146
+ I
2147
+ 2f
2148
+ I
2149
+ c
2150
+ x
2151
+ 69
2152
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2153
+ p
2154
+ 0
2155
+ x
2156
+ 2
2157
+ it
2158
+ p
2159
+ 5
2160
+ I
2161
+ 0
2162
+ I
2163
+ 2e
2164
+ I
2165
+ a
2166
+ I
2167
+ 2f
2168
+ I
2169
+ 12
2170
+ x
2171
+ 69
2172
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2173
+ p
2174
+ 0
2175
+ s
2176
+ 22
2177
+ from a singleton Array
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
+ 18
2192
+ 5
2193
+ 7
2194
+ 0
2195
+ 56
2196
+ 1
2197
+ 47
2198
+ 50
2199
+ 2
2200
+ 1
2201
+ 15
2202
+ 5
2203
+ 56
2204
+ 3
2205
+ 47
2206
+ 50
2207
+ 4
2208
+ 0
2209
+ 11
2210
+ I
2211
+ 4
2212
+ I
2213
+ 0
2214
+ I
2215
+ 0
2216
+ I
2217
+ 0
2218
+ I
2219
+ -2
2220
+ p
2221
+ 5
2222
+ x
2223
+ 3
2224
+ arg
2225
+ M
2226
+ 1
2227
+ p
2228
+ 2
2229
+ x
2230
+ 9
2231
+ for_block
2232
+ t
2233
+ n
2234
+ x
2235
+ 3
2236
+ Alf
2237
+ i
2238
+ 6
2239
+ 7
2240
+ 0
2241
+ 64
2242
+ 35
2243
+ 1
2244
+ 11
2245
+ I
2246
+ 2
2247
+ I
2248
+ 0
2249
+ I
2250
+ 0
2251
+ I
2252
+ 0
2253
+ I
2254
+ -2
2255
+ p
2256
+ 1
2257
+ s
2258
+ 12
2259
+ status == 10
2260
+ p
2261
+ 3
2262
+ I
2263
+ 0
2264
+ I
2265
+ 33
2266
+ I
2267
+ 6
2268
+ x
2269
+ 69
2270
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2271
+ p
2272
+ 0
2273
+ x
2274
+ 3
2275
+ let
2276
+ M
2277
+ 1
2278
+ p
2279
+ 2
2280
+ x
2281
+ 9
2282
+ for_block
2283
+ t
2284
+ n
2285
+ x
2286
+ 3
2287
+ Alf
2288
+ i
2289
+ 12
2290
+ 5
2291
+ 5
2292
+ 2
2293
+ 47
2294
+ 49
2295
+ 0
2296
+ 1
2297
+ 47
2298
+ 49
2299
+ 1
2300
+ 1
2301
+ 11
2302
+ I
2303
+ 4
2304
+ I
2305
+ 0
2306
+ I
2307
+ 0
2308
+ I
2309
+ 0
2310
+ I
2311
+ -2
2312
+ p
2313
+ 2
2314
+ x
2315
+ 3
2316
+ eql
2317
+ x
2318
+ 6
2319
+ should
2320
+ p
2321
+ 3
2322
+ I
2323
+ 0
2324
+ I
2325
+ 34
2326
+ I
2327
+ c
2328
+ x
2329
+ 69
2330
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2331
+ p
2332
+ 0
2333
+ x
2334
+ 2
2335
+ it
2336
+ p
2337
+ 5
2338
+ I
2339
+ 0
2340
+ I
2341
+ 33
2342
+ I
2343
+ a
2344
+ I
2345
+ 34
2346
+ I
2347
+ 12
2348
+ x
2349
+ 69
2350
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2351
+ p
2352
+ 0
2353
+ s
2354
+ 27
2355
+ from an Array with coercion
2356
+ M
2357
+ 1
2358
+ p
2359
+ 2
2360
+ x
2361
+ 9
2362
+ for_block
2363
+ t
2364
+ n
2365
+ x
2366
+ 3
2367
+ Alf
2368
+ i
2369
+ 18
2370
+ 5
2371
+ 7
2372
+ 0
2373
+ 56
2374
+ 1
2375
+ 47
2376
+ 50
2377
+ 2
2378
+ 1
2379
+ 15
2380
+ 5
2381
+ 56
2382
+ 3
2383
+ 47
2384
+ 50
2385
+ 4
2386
+ 0
2387
+ 11
2388
+ I
2389
+ 4
2390
+ I
2391
+ 0
2392
+ I
2393
+ 0
2394
+ I
2395
+ 0
2396
+ I
2397
+ -2
2398
+ p
2399
+ 5
2400
+ x
2401
+ 3
2402
+ arg
2403
+ M
2404
+ 1
2405
+ p
2406
+ 2
2407
+ x
2408
+ 9
2409
+ for_block
2410
+ t
2411
+ n
2412
+ x
2413
+ 3
2414
+ Alf
2415
+ i
2416
+ 9
2417
+ 7
2418
+ 0
2419
+ 64
2420
+ 7
2421
+ 1
2422
+ 64
2423
+ 35
2424
+ 2
2425
+ 11
2426
+ I
2427
+ 3
2428
+ I
2429
+ 0
2430
+ I
2431
+ 0
2432
+ I
2433
+ 0
2434
+ I
2435
+ -2
2436
+ p
2437
+ 2
2438
+ s
2439
+ 6
2440
+ status
2441
+ s
2442
+ 2
2443
+ 10
2444
+ p
2445
+ 3
2446
+ I
2447
+ 0
2448
+ I
2449
+ 38
2450
+ I
2451
+ 9
2452
+ x
2453
+ 69
2454
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2455
+ p
2456
+ 0
2457
+ x
2458
+ 3
2459
+ let
2460
+ M
2461
+ 1
2462
+ p
2463
+ 2
2464
+ x
2465
+ 9
2466
+ for_block
2467
+ t
2468
+ n
2469
+ x
2470
+ 3
2471
+ Alf
2472
+ i
2473
+ 12
2474
+ 5
2475
+ 5
2476
+ 2
2477
+ 47
2478
+ 49
2479
+ 0
2480
+ 1
2481
+ 47
2482
+ 49
2483
+ 1
2484
+ 1
2485
+ 11
2486
+ I
2487
+ 4
2488
+ I
2489
+ 0
2490
+ I
2491
+ 0
2492
+ I
2493
+ 0
2494
+ I
2495
+ -2
2496
+ p
2497
+ 2
2498
+ x
2499
+ 3
2500
+ eql
2501
+ x
2502
+ 6
2503
+ should
2504
+ p
2505
+ 3
2506
+ I
2507
+ 0
2508
+ I
2509
+ 39
2510
+ I
2511
+ c
2512
+ x
2513
+ 69
2514
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2515
+ p
2516
+ 0
2517
+ x
2518
+ 2
2519
+ it
2520
+ p
2521
+ 5
2522
+ I
2523
+ 0
2524
+ I
2525
+ 38
2526
+ I
2527
+ a
2528
+ I
2529
+ 39
2530
+ I
2531
+ 12
2532
+ x
2533
+ 69
2534
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2535
+ p
2536
+ 0
2537
+ p
2538
+ 23
2539
+ I
2540
+ 0
2541
+ I
2542
+ 8
2543
+ I
2544
+ 8
2545
+ I
2546
+ a
2547
+ I
2548
+ 13
2549
+ I
2550
+ f
2551
+ I
2552
+ 1e
2553
+ I
2554
+ 14
2555
+ I
2556
+ 29
2557
+ I
2558
+ 19
2559
+ I
2560
+ 34
2561
+ I
2562
+ 1e
2563
+ I
2564
+ 3f
2565
+ I
2566
+ 23
2567
+ I
2568
+ 4a
2569
+ I
2570
+ 28
2571
+ I
2572
+ 55
2573
+ I
2574
+ 2d
2575
+ I
2576
+ 60
2577
+ I
2578
+ 32
2579
+ I
2580
+ 6b
2581
+ I
2582
+ 37
2583
+ I
2584
+ 76
2585
+ x
2586
+ 69
2587
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2588
+ p
2589
+ 0
2590
+ x
2591
+ 8
2592
+ describe
2593
+ s
2594
+ 9
2595
+ from_argv
2596
+ M
2597
+ 1
2598
+ p
2599
+ 2
2600
+ x
2601
+ 9
2602
+ for_block
2603
+ t
2604
+ n
2605
+ x
2606
+ 3
2607
+ Alf
2608
+ i
2609
+ 30
2610
+ 5
2611
+ 56
2612
+ 0
2613
+ 47
2614
+ 50
2615
+ 1
2616
+ 0
2617
+ 15
2618
+ 5
2619
+ 7
2620
+ 2
2621
+ 64
2622
+ 56
2623
+ 3
2624
+ 47
2625
+ 50
2626
+ 4
2627
+ 1
2628
+ 15
2629
+ 5
2630
+ 7
2631
+ 5
2632
+ 64
2633
+ 56
2634
+ 6
2635
+ 47
2636
+ 50
2637
+ 4
2638
+ 1
2639
+ 11
2640
+ I
2641
+ 4
2642
+ I
2643
+ 0
2644
+ I
2645
+ 0
2646
+ I
2647
+ 0
2648
+ I
2649
+ -2
2650
+ p
2651
+ 7
2652
+ M
2653
+ 1
2654
+ p
2655
+ 2
2656
+ x
2657
+ 9
2658
+ for_block
2659
+ t
2660
+ n
2661
+ x
2662
+ 3
2663
+ Alf
2664
+ i
2665
+ 16
2666
+ 45
2667
+ 0
2668
+ 1
2669
+ 5
2670
+ 48
2671
+ 2
2672
+ 49
2673
+ 3
2674
+ 1
2675
+ 5
2676
+ 48
2677
+ 4
2678
+ 49
2679
+ 5
2680
+ 1
2681
+ 11
2682
+ I
2683
+ 3
2684
+ I
2685
+ 0
2686
+ I
2687
+ 0
2688
+ I
2689
+ 0
2690
+ I
2691
+ -2
2692
+ p
2693
+ 6
2694
+ x
2695
+ 14
2696
+ TuplePredicate
2697
+ n
2698
+ x
2699
+ 4
2700
+ argv
2701
+ x
2702
+ 9
2703
+ from_argv
2704
+ x
2705
+ 6
2706
+ handle
2707
+ x
2708
+ 8
2709
+ evaluate
2710
+ p
2711
+ 3
2712
+ I
2713
+ 0
2714
+ I
2715
+ 3f
2716
+ I
2717
+ 10
2718
+ x
2719
+ 69
2720
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2721
+ p
2722
+ 0
2723
+ x
2724
+ 7
2725
+ subject
2726
+ s
2727
+ 22
2728
+ from a singleton Array
2729
+ M
2730
+ 1
2731
+ p
2732
+ 2
2733
+ x
2734
+ 9
2735
+ for_block
2736
+ t
2737
+ n
2738
+ x
2739
+ 3
2740
+ Alf
2741
+ i
2742
+ 18
2743
+ 5
2744
+ 7
2745
+ 0
2746
+ 56
2747
+ 1
2748
+ 47
2749
+ 50
2750
+ 2
2751
+ 1
2752
+ 15
2753
+ 5
2754
+ 56
2755
+ 3
2756
+ 47
2757
+ 50
2758
+ 4
2759
+ 0
2760
+ 11
2761
+ I
2762
+ 4
2763
+ I
2764
+ 0
2765
+ I
2766
+ 0
2767
+ I
2768
+ 0
2769
+ I
2770
+ -2
2771
+ p
2772
+ 5
2773
+ x
2774
+ 4
2775
+ argv
2776
+ M
2777
+ 1
2778
+ p
2779
+ 2
2780
+ x
2781
+ 9
2782
+ for_block
2783
+ t
2784
+ n
2785
+ x
2786
+ 3
2787
+ Alf
2788
+ i
2789
+ 6
2790
+ 7
2791
+ 0
2792
+ 64
2793
+ 35
2794
+ 1
2795
+ 11
2796
+ I
2797
+ 2
2798
+ I
2799
+ 0
2800
+ I
2801
+ 0
2802
+ I
2803
+ 0
2804
+ I
2805
+ -2
2806
+ p
2807
+ 1
2808
+ s
2809
+ 12
2810
+ status == 10
2811
+ p
2812
+ 3
2813
+ I
2814
+ 0
2815
+ I
2816
+ 43
2817
+ I
2818
+ 6
2819
+ x
2820
+ 69
2821
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2822
+ p
2823
+ 0
2824
+ x
2825
+ 3
2826
+ let
2827
+ M
2828
+ 1
2829
+ p
2830
+ 2
2831
+ x
2832
+ 9
2833
+ for_block
2834
+ t
2835
+ n
2836
+ x
2837
+ 3
2838
+ Alf
2839
+ i
2840
+ 12
2841
+ 5
2842
+ 5
2843
+ 2
2844
+ 47
2845
+ 49
2846
+ 0
2847
+ 1
2848
+ 47
2849
+ 49
2850
+ 1
2851
+ 1
2852
+ 11
2853
+ I
2854
+ 4
2855
+ I
2856
+ 0
2857
+ I
2858
+ 0
2859
+ I
2860
+ 0
2861
+ I
2862
+ -2
2863
+ p
2864
+ 2
2865
+ x
2866
+ 3
2867
+ eql
2868
+ x
2869
+ 6
2870
+ should
2871
+ p
2872
+ 3
2873
+ I
2874
+ 0
2875
+ I
2876
+ 44
2877
+ I
2878
+ c
2879
+ x
2880
+ 69
2881
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2882
+ p
2883
+ 0
2884
+ x
2885
+ 2
2886
+ it
2887
+ p
2888
+ 5
2889
+ I
2890
+ 0
2891
+ I
2892
+ 43
2893
+ I
2894
+ a
2895
+ I
2896
+ 44
2897
+ I
2898
+ 12
2899
+ x
2900
+ 69
2901
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2902
+ p
2903
+ 0
2904
+ x
2905
+ 8
2906
+ describe
2907
+ s
2908
+ 27
2909
+ from an Array with coercion
2910
+ M
2911
+ 1
2912
+ p
2913
+ 2
2914
+ x
2915
+ 9
2916
+ for_block
2917
+ t
2918
+ n
2919
+ x
2920
+ 3
2921
+ Alf
2922
+ i
2923
+ 18
2924
+ 5
2925
+ 7
2926
+ 0
2927
+ 56
2928
+ 1
2929
+ 47
2930
+ 50
2931
+ 2
2932
+ 1
2933
+ 15
2934
+ 5
2935
+ 56
2936
+ 3
2937
+ 47
2938
+ 50
2939
+ 4
2940
+ 0
2941
+ 11
2942
+ I
2943
+ 4
2944
+ I
2945
+ 0
2946
+ I
2947
+ 0
2948
+ I
2949
+ 0
2950
+ I
2951
+ -2
2952
+ p
2953
+ 5
2954
+ x
2955
+ 4
2956
+ argv
2957
+ M
2958
+ 1
2959
+ p
2960
+ 2
2961
+ x
2962
+ 9
2963
+ for_block
2964
+ t
2965
+ n
2966
+ x
2967
+ 3
2968
+ Alf
2969
+ i
2970
+ 9
2971
+ 7
2972
+ 0
2973
+ 64
2974
+ 7
2975
+ 1
2976
+ 64
2977
+ 35
2978
+ 2
2979
+ 11
2980
+ I
2981
+ 3
2982
+ I
2983
+ 0
2984
+ I
2985
+ 0
2986
+ I
2987
+ 0
2988
+ I
2989
+ -2
2990
+ p
2991
+ 2
2992
+ s
2993
+ 6
2994
+ status
2995
+ s
2996
+ 2
2997
+ 10
2998
+ p
2999
+ 3
3000
+ I
3001
+ 0
3002
+ I
3003
+ 48
3004
+ I
3005
+ 9
3006
+ x
3007
+ 69
3008
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3009
+ p
3010
+ 0
3011
+ x
3012
+ 3
3013
+ let
3014
+ M
3015
+ 1
3016
+ p
3017
+ 2
3018
+ x
3019
+ 9
3020
+ for_block
3021
+ t
3022
+ n
3023
+ x
3024
+ 3
3025
+ Alf
3026
+ i
3027
+ 12
3028
+ 5
3029
+ 5
3030
+ 2
3031
+ 47
3032
+ 49
3033
+ 0
3034
+ 1
3035
+ 47
3036
+ 49
3037
+ 1
3038
+ 1
3039
+ 11
3040
+ I
3041
+ 4
3042
+ I
3043
+ 0
3044
+ I
3045
+ 0
3046
+ I
3047
+ 0
3048
+ I
3049
+ -2
3050
+ p
3051
+ 2
3052
+ x
3053
+ 3
3054
+ eql
3055
+ x
3056
+ 6
3057
+ should
3058
+ p
3059
+ 3
3060
+ I
3061
+ 0
3062
+ I
3063
+ 49
3064
+ I
3065
+ c
3066
+ x
3067
+ 69
3068
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3069
+ p
3070
+ 0
3071
+ x
3072
+ 2
3073
+ it
3074
+ p
3075
+ 5
3076
+ I
3077
+ 0
3078
+ I
3079
+ 48
3080
+ I
3081
+ a
3082
+ I
3083
+ 49
3084
+ I
3085
+ 12
3086
+ x
3087
+ 69
3088
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3089
+ p
3090
+ 0
3091
+ p
3092
+ 7
3093
+ I
3094
+ 0
3095
+ I
3096
+ 3f
3097
+ I
3098
+ 8
3099
+ I
3100
+ 42
3101
+ I
3102
+ 13
3103
+ I
3104
+ 47
3105
+ I
3106
+ 1e
3107
+ x
3108
+ 69
3109
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3110
+ p
3111
+ 0
3112
+ p
3113
+ 7
3114
+ I
3115
+ 0
3116
+ I
3117
+ 5
3118
+ I
3119
+ a
3120
+ I
3121
+ 7
3122
+ I
3123
+ 15
3124
+ I
3125
+ 3e
3126
+ I
3127
+ 20
3128
+ x
3129
+ 69
3130
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3131
+ p
3132
+ 0
3133
+ x
3134
+ 8
3135
+ describe
3136
+ p
3137
+ 3
3138
+ I
3139
+ 2
3140
+ I
3141
+ 3
3142
+ I
3143
+ d
3144
+ x
3145
+ 69
3146
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3147
+ p
3148
+ 0
3149
+ x
3150
+ 13
3151
+ attach_method
3152
+ p
3153
+ 5
3154
+ I
3155
+ 0
3156
+ I
3157
+ 1
3158
+ I
3159
+ 9
3160
+ I
3161
+ 2
3162
+ I
3163
+ 25
3164
+ x
3165
+ 69
3166
+ /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3167
+ p
3168
+ 0