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,1928 @@
1
+ !RBIX
2
+ 11817445442317083511
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 31
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 45
33
+ 3
34
+ 4
35
+ 56
36
+ 5
37
+ 47
38
+ 50
39
+ 6
40
+ 1
41
+ 15
42
+ 2
43
+ 11
44
+ I
45
+ 3
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ I
51
+ 0
52
+ n
53
+ p
54
+ 7
55
+ s
56
+ 11
57
+ spec_helper
58
+ x
59
+ 7
60
+ require
61
+ s
62
+ 3
63
+ set
64
+ x
65
+ 3
66
+ Set
67
+ n
68
+ M
69
+ 1
70
+ p
71
+ 2
72
+ x
73
+ 9
74
+ for_block
75
+ t
76
+ n
77
+ x
78
+ 9
79
+ __block__
80
+ i
81
+ 22
82
+ 5
83
+ 7
84
+ 0
85
+ 64
86
+ 56
87
+ 1
88
+ 47
89
+ 50
90
+ 2
91
+ 1
92
+ 15
93
+ 5
94
+ 7
95
+ 3
96
+ 64
97
+ 56
98
+ 4
99
+ 47
100
+ 50
101
+ 5
102
+ 1
103
+ 11
104
+ I
105
+ 4
106
+ I
107
+ 0
108
+ I
109
+ 0
110
+ I
111
+ 0
112
+ I
113
+ -2
114
+ p
115
+ 6
116
+ s
117
+ 26
118
+ empty sets should be equal
119
+ M
120
+ 1
121
+ p
122
+ 2
123
+ x
124
+ 9
125
+ for_block
126
+ t
127
+ n
128
+ x
129
+ 9
130
+ __block__
131
+ i
132
+ 130
133
+ 45
134
+ 0
135
+ 1
136
+ 13
137
+ 71
138
+ 2
139
+ 47
140
+ 9
141
+ 23
142
+ 47
143
+ 49
144
+ 3
145
+ 0
146
+ 13
147
+ 35
148
+ 0
149
+ 47
150
+ 49
151
+ 4
152
+ 1
153
+ 15
154
+ 8
155
+ 28
156
+ 35
157
+ 0
158
+ 49
159
+ 2
160
+ 1
161
+ 5
162
+ 45
163
+ 0
164
+ 5
165
+ 13
166
+ 71
167
+ 2
168
+ 47
169
+ 9
170
+ 52
171
+ 47
172
+ 49
173
+ 3
174
+ 0
175
+ 13
176
+ 35
177
+ 0
178
+ 47
179
+ 49
180
+ 4
181
+ 1
182
+ 15
183
+ 8
184
+ 57
185
+ 35
186
+ 0
187
+ 49
188
+ 2
189
+ 1
190
+ 47
191
+ 49
192
+ 6
193
+ 1
194
+ 49
195
+ 7
196
+ 1
197
+ 15
198
+ 45
199
+ 0
200
+ 8
201
+ 13
202
+ 71
203
+ 2
204
+ 47
205
+ 9
206
+ 88
207
+ 47
208
+ 49
209
+ 3
210
+ 0
211
+ 13
212
+ 35
213
+ 0
214
+ 47
215
+ 49
216
+ 4
217
+ 1
218
+ 15
219
+ 8
220
+ 93
221
+ 35
222
+ 0
223
+ 49
224
+ 2
225
+ 1
226
+ 5
227
+ 45
228
+ 0
229
+ 9
230
+ 13
231
+ 71
232
+ 2
233
+ 47
234
+ 9
235
+ 117
236
+ 47
237
+ 49
238
+ 3
239
+ 0
240
+ 13
241
+ 35
242
+ 0
243
+ 47
244
+ 49
245
+ 4
246
+ 1
247
+ 15
248
+ 8
249
+ 122
250
+ 35
251
+ 0
252
+ 49
253
+ 2
254
+ 1
255
+ 47
256
+ 49
257
+ 10
258
+ 1
259
+ 49
260
+ 7
261
+ 1
262
+ 11
263
+ I
264
+ 6
265
+ I
266
+ 0
267
+ I
268
+ 0
269
+ I
270
+ 0
271
+ I
272
+ -2
273
+ p
274
+ 11
275
+ x
276
+ 3
277
+ Set
278
+ n
279
+ x
280
+ 3
281
+ new
282
+ x
283
+ 8
284
+ allocate
285
+ x
286
+ 10
287
+ initialize
288
+ n
289
+ x
290
+ 2
291
+ eq
292
+ x
293
+ 6
294
+ should
295
+ n
296
+ n
297
+ x
298
+ 3
299
+ eql
300
+ p
301
+ 5
302
+ I
303
+ 0
304
+ I
305
+ 6
306
+ I
307
+ 41
308
+ I
309
+ 7
310
+ I
311
+ 82
312
+ x
313
+ 63
314
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
315
+ p
316
+ 0
317
+ x
318
+ 7
319
+ specify
320
+ s
321
+ 16
322
+ on DEE-like sets
323
+ M
324
+ 1
325
+ p
326
+ 2
327
+ x
328
+ 9
329
+ for_block
330
+ t
331
+ n
332
+ x
333
+ 9
334
+ __block__
335
+ i
336
+ 87
337
+ 5
338
+ 7
339
+ 0
340
+ 56
341
+ 1
342
+ 47
343
+ 50
344
+ 2
345
+ 1
346
+ 15
347
+ 5
348
+ 7
349
+ 3
350
+ 64
351
+ 56
352
+ 4
353
+ 47
354
+ 50
355
+ 5
356
+ 1
357
+ 15
358
+ 5
359
+ 7
360
+ 6
361
+ 64
362
+ 56
363
+ 7
364
+ 47
365
+ 50
366
+ 5
367
+ 1
368
+ 15
369
+ 5
370
+ 7
371
+ 8
372
+ 64
373
+ 56
374
+ 9
375
+ 47
376
+ 50
377
+ 5
378
+ 1
379
+ 15
380
+ 5
381
+ 7
382
+ 10
383
+ 64
384
+ 56
385
+ 11
386
+ 47
387
+ 50
388
+ 5
389
+ 1
390
+ 15
391
+ 5
392
+ 7
393
+ 12
394
+ 64
395
+ 56
396
+ 13
397
+ 47
398
+ 50
399
+ 5
400
+ 1
401
+ 15
402
+ 5
403
+ 7
404
+ 14
405
+ 64
406
+ 56
407
+ 15
408
+ 47
409
+ 50
410
+ 5
411
+ 1
412
+ 15
413
+ 5
414
+ 7
415
+ 14
416
+ 64
417
+ 56
418
+ 16
419
+ 47
420
+ 50
421
+ 5
422
+ 1
423
+ 11
424
+ I
425
+ 4
426
+ I
427
+ 0
428
+ I
429
+ 0
430
+ I
431
+ 0
432
+ I
433
+ -2
434
+ p
435
+ 17
436
+ x
437
+ 3
438
+ dee
439
+ M
440
+ 1
441
+ p
442
+ 2
443
+ x
444
+ 9
445
+ for_block
446
+ t
447
+ n
448
+ x
449
+ 9
450
+ __block__
451
+ i
452
+ 43
453
+ 45
454
+ 0
455
+ 1
456
+ 13
457
+ 71
458
+ 2
459
+ 47
460
+ 9
461
+ 30
462
+ 47
463
+ 49
464
+ 3
465
+ 0
466
+ 13
467
+ 44
468
+ 43
469
+ 4
470
+ 78
471
+ 49
472
+ 5
473
+ 1
474
+ 35
475
+ 1
476
+ 47
477
+ 49
478
+ 6
479
+ 1
480
+ 15
481
+ 8
482
+ 42
483
+ 44
484
+ 43
485
+ 4
486
+ 78
487
+ 49
488
+ 5
489
+ 1
490
+ 35
491
+ 1
492
+ 49
493
+ 2
494
+ 1
495
+ 11
496
+ I
497
+ 5
498
+ I
499
+ 0
500
+ I
501
+ 0
502
+ I
503
+ 0
504
+ I
505
+ -2
506
+ p
507
+ 7
508
+ x
509
+ 3
510
+ Set
511
+ n
512
+ x
513
+ 3
514
+ new
515
+ x
516
+ 8
517
+ allocate
518
+ x
519
+ 4
520
+ Hash
521
+ x
522
+ 16
523
+ new_from_literal
524
+ x
525
+ 10
526
+ initialize
527
+ p
528
+ 3
529
+ I
530
+ 0
531
+ I
532
+ b
533
+ I
534
+ 2b
535
+ x
536
+ 63
537
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
538
+ p
539
+ 0
540
+ x
541
+ 3
542
+ let
543
+ s
544
+ 24
545
+ DEE sets should be equal
546
+ M
547
+ 1
548
+ p
549
+ 2
550
+ x
551
+ 9
552
+ for_block
553
+ t
554
+ n
555
+ x
556
+ 9
557
+ __block__
558
+ i
559
+ 108
560
+ 45
561
+ 0
562
+ 1
563
+ 13
564
+ 71
565
+ 2
566
+ 47
567
+ 9
568
+ 30
569
+ 47
570
+ 49
571
+ 3
572
+ 0
573
+ 13
574
+ 44
575
+ 43
576
+ 4
577
+ 78
578
+ 49
579
+ 5
580
+ 1
581
+ 35
582
+ 1
583
+ 47
584
+ 49
585
+ 6
586
+ 1
587
+ 15
588
+ 8
589
+ 42
590
+ 44
591
+ 43
592
+ 4
593
+ 78
594
+ 49
595
+ 5
596
+ 1
597
+ 35
598
+ 1
599
+ 49
600
+ 2
601
+ 1
602
+ 5
603
+ 5
604
+ 48
605
+ 7
606
+ 47
607
+ 49
608
+ 8
609
+ 1
610
+ 49
611
+ 9
612
+ 1
613
+ 15
614
+ 45
615
+ 0
616
+ 10
617
+ 13
618
+ 71
619
+ 2
620
+ 47
621
+ 9
622
+ 84
623
+ 47
624
+ 49
625
+ 3
626
+ 0
627
+ 13
628
+ 44
629
+ 43
630
+ 4
631
+ 78
632
+ 49
633
+ 5
634
+ 1
635
+ 35
636
+ 1
637
+ 47
638
+ 49
639
+ 6
640
+ 1
641
+ 15
642
+ 8
643
+ 96
644
+ 44
645
+ 43
646
+ 4
647
+ 78
648
+ 49
649
+ 5
650
+ 1
651
+ 35
652
+ 1
653
+ 49
654
+ 2
655
+ 1
656
+ 5
657
+ 5
658
+ 48
659
+ 7
660
+ 47
661
+ 49
662
+ 11
663
+ 1
664
+ 49
665
+ 9
666
+ 1
667
+ 11
668
+ I
669
+ 5
670
+ I
671
+ 0
672
+ I
673
+ 0
674
+ I
675
+ 0
676
+ I
677
+ -2
678
+ p
679
+ 12
680
+ x
681
+ 3
682
+ Set
683
+ n
684
+ x
685
+ 3
686
+ new
687
+ x
688
+ 8
689
+ allocate
690
+ x
691
+ 4
692
+ Hash
693
+ x
694
+ 16
695
+ new_from_literal
696
+ x
697
+ 10
698
+ initialize
699
+ x
700
+ 3
701
+ dee
702
+ x
703
+ 2
704
+ eq
705
+ x
706
+ 6
707
+ should
708
+ n
709
+ x
710
+ 3
711
+ eql
712
+ p
713
+ 5
714
+ I
715
+ 0
716
+ I
717
+ e
718
+ I
719
+ 36
720
+ I
721
+ f
722
+ I
723
+ 6c
724
+ x
725
+ 63
726
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
727
+ p
728
+ 0
729
+ x
730
+ 7
731
+ specify
732
+ s
733
+ 33
734
+ DEE-like sets should be equal (1)
735
+ M
736
+ 1
737
+ p
738
+ 2
739
+ x
740
+ 9
741
+ for_block
742
+ t
743
+ n
744
+ x
745
+ 9
746
+ __block__
747
+ i
748
+ 92
749
+ 44
750
+ 43
751
+ 0
752
+ 78
753
+ 49
754
+ 1
755
+ 1
756
+ 35
757
+ 1
758
+ 19
759
+ 0
760
+ 15
761
+ 45
762
+ 2
763
+ 3
764
+ 13
765
+ 71
766
+ 4
767
+ 47
768
+ 9
769
+ 35
770
+ 47
771
+ 49
772
+ 5
773
+ 0
774
+ 13
775
+ 20
776
+ 0
777
+ 47
778
+ 49
779
+ 6
780
+ 1
781
+ 15
782
+ 8
783
+ 40
784
+ 20
785
+ 0
786
+ 49
787
+ 4
788
+ 1
789
+ 5
790
+ 5
791
+ 48
792
+ 7
793
+ 47
794
+ 49
795
+ 8
796
+ 1
797
+ 49
798
+ 9
799
+ 1
800
+ 15
801
+ 45
802
+ 2
803
+ 10
804
+ 13
805
+ 71
806
+ 4
807
+ 47
808
+ 9
809
+ 75
810
+ 47
811
+ 49
812
+ 5
813
+ 0
814
+ 13
815
+ 20
816
+ 0
817
+ 47
818
+ 49
819
+ 6
820
+ 1
821
+ 15
822
+ 8
823
+ 80
824
+ 20
825
+ 0
826
+ 49
827
+ 4
828
+ 1
829
+ 5
830
+ 5
831
+ 48
832
+ 7
833
+ 47
834
+ 49
835
+ 11
836
+ 1
837
+ 49
838
+ 9
839
+ 1
840
+ 11
841
+ I
842
+ 5
843
+ I
844
+ 1
845
+ I
846
+ 0
847
+ I
848
+ 0
849
+ I
850
+ -2
851
+ p
852
+ 12
853
+ x
854
+ 4
855
+ Hash
856
+ x
857
+ 16
858
+ new_from_literal
859
+ x
860
+ 3
861
+ Set
862
+ n
863
+ x
864
+ 3
865
+ new
866
+ x
867
+ 8
868
+ allocate
869
+ x
870
+ 10
871
+ initialize
872
+ x
873
+ 3
874
+ dee
875
+ x
876
+ 2
877
+ eq
878
+ x
879
+ 6
880
+ should
881
+ n
882
+ x
883
+ 3
884
+ eql
885
+ p
886
+ 7
887
+ I
888
+ 0
889
+ I
890
+ 13
891
+ I
892
+ c
893
+ I
894
+ 14
895
+ I
896
+ 34
897
+ I
898
+ 15
899
+ I
900
+ 5c
901
+ x
902
+ 63
903
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
904
+ p
905
+ 1
906
+ x
907
+ 3
908
+ arr
909
+ s
910
+ 33
911
+ DEE-like sets should be equal (2)
912
+ M
913
+ 1
914
+ p
915
+ 2
916
+ x
917
+ 9
918
+ for_block
919
+ t
920
+ n
921
+ x
922
+ 9
923
+ __block__
924
+ i
925
+ 104
926
+ 44
927
+ 43
928
+ 0
929
+ 78
930
+ 49
931
+ 1
932
+ 1
933
+ 35
934
+ 1
935
+ 19
936
+ 0
937
+ 15
938
+ 45
939
+ 2
940
+ 3
941
+ 13
942
+ 71
943
+ 4
944
+ 47
945
+ 9
946
+ 38
947
+ 47
948
+ 49
949
+ 5
950
+ 0
951
+ 13
952
+ 20
953
+ 0
954
+ 49
955
+ 6
956
+ 0
957
+ 47
958
+ 49
959
+ 7
960
+ 1
961
+ 15
962
+ 8
963
+ 46
964
+ 20
965
+ 0
966
+ 49
967
+ 6
968
+ 0
969
+ 49
970
+ 4
971
+ 1
972
+ 5
973
+ 5
974
+ 48
975
+ 8
976
+ 47
977
+ 49
978
+ 9
979
+ 1
980
+ 49
981
+ 10
982
+ 1
983
+ 15
984
+ 45
985
+ 2
986
+ 11
987
+ 13
988
+ 71
989
+ 4
990
+ 47
991
+ 9
992
+ 84
993
+ 47
994
+ 49
995
+ 5
996
+ 0
997
+ 13
998
+ 20
999
+ 0
1000
+ 49
1001
+ 6
1002
+ 0
1003
+ 47
1004
+ 49
1005
+ 7
1006
+ 1
1007
+ 15
1008
+ 8
1009
+ 92
1010
+ 20
1011
+ 0
1012
+ 49
1013
+ 6
1014
+ 0
1015
+ 49
1016
+ 4
1017
+ 1
1018
+ 5
1019
+ 5
1020
+ 48
1021
+ 8
1022
+ 47
1023
+ 49
1024
+ 12
1025
+ 1
1026
+ 49
1027
+ 10
1028
+ 1
1029
+ 11
1030
+ I
1031
+ 5
1032
+ I
1033
+ 1
1034
+ I
1035
+ 0
1036
+ I
1037
+ 0
1038
+ I
1039
+ -2
1040
+ p
1041
+ 13
1042
+ x
1043
+ 4
1044
+ Hash
1045
+ x
1046
+ 16
1047
+ new_from_literal
1048
+ x
1049
+ 3
1050
+ Set
1051
+ n
1052
+ x
1053
+ 3
1054
+ new
1055
+ x
1056
+ 8
1057
+ allocate
1058
+ x
1059
+ 4
1060
+ to_a
1061
+ x
1062
+ 10
1063
+ initialize
1064
+ x
1065
+ 3
1066
+ dee
1067
+ x
1068
+ 2
1069
+ eq
1070
+ x
1071
+ 6
1072
+ should
1073
+ n
1074
+ x
1075
+ 3
1076
+ eql
1077
+ p
1078
+ 7
1079
+ I
1080
+ 0
1081
+ I
1082
+ 19
1083
+ I
1084
+ c
1085
+ I
1086
+ 1a
1087
+ I
1088
+ 3a
1089
+ I
1090
+ 1b
1091
+ I
1092
+ 68
1093
+ x
1094
+ 63
1095
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1096
+ p
1097
+ 1
1098
+ x
1099
+ 3
1100
+ arr
1101
+ s
1102
+ 33
1103
+ DEE-like sets should be equal (3)
1104
+ M
1105
+ 1
1106
+ p
1107
+ 2
1108
+ x
1109
+ 9
1110
+ for_block
1111
+ t
1112
+ n
1113
+ x
1114
+ 9
1115
+ __block__
1116
+ i
1117
+ 46
1118
+ 44
1119
+ 43
1120
+ 0
1121
+ 78
1122
+ 49
1123
+ 1
1124
+ 1
1125
+ 35
1126
+ 1
1127
+ 19
1128
+ 0
1129
+ 15
1130
+ 20
1131
+ 0
1132
+ 49
1133
+ 2
1134
+ 0
1135
+ 5
1136
+ 5
1137
+ 48
1138
+ 3
1139
+ 47
1140
+ 49
1141
+ 4
1142
+ 1
1143
+ 49
1144
+ 5
1145
+ 1
1146
+ 15
1147
+ 20
1148
+ 0
1149
+ 49
1150
+ 2
1151
+ 0
1152
+ 5
1153
+ 5
1154
+ 48
1155
+ 3
1156
+ 47
1157
+ 49
1158
+ 6
1159
+ 1
1160
+ 49
1161
+ 5
1162
+ 1
1163
+ 11
1164
+ I
1165
+ 5
1166
+ I
1167
+ 1
1168
+ I
1169
+ 0
1170
+ I
1171
+ 0
1172
+ I
1173
+ -2
1174
+ p
1175
+ 7
1176
+ x
1177
+ 4
1178
+ Hash
1179
+ x
1180
+ 16
1181
+ new_from_literal
1182
+ x
1183
+ 6
1184
+ to_set
1185
+ x
1186
+ 3
1187
+ dee
1188
+ x
1189
+ 2
1190
+ eq
1191
+ x
1192
+ 6
1193
+ should
1194
+ x
1195
+ 3
1196
+ eql
1197
+ p
1198
+ 7
1199
+ I
1200
+ 0
1201
+ I
1202
+ 1f
1203
+ I
1204
+ c
1205
+ I
1206
+ 20
1207
+ I
1208
+ 1d
1209
+ I
1210
+ 21
1211
+ I
1212
+ 2e
1213
+ x
1214
+ 63
1215
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1216
+ p
1217
+ 1
1218
+ x
1219
+ 3
1220
+ arr
1221
+ s
1222
+ 33
1223
+ DEE-like sets should be equal (4)
1224
+ M
1225
+ 1
1226
+ p
1227
+ 2
1228
+ x
1229
+ 9
1230
+ for_block
1231
+ t
1232
+ n
1233
+ x
1234
+ 9
1235
+ __block__
1236
+ i
1237
+ 46
1238
+ 44
1239
+ 43
1240
+ 0
1241
+ 78
1242
+ 49
1243
+ 1
1244
+ 1
1245
+ 35
1246
+ 1
1247
+ 19
1248
+ 0
1249
+ 15
1250
+ 20
1251
+ 0
1252
+ 49
1253
+ 2
1254
+ 0
1255
+ 5
1256
+ 5
1257
+ 48
1258
+ 3
1259
+ 47
1260
+ 49
1261
+ 4
1262
+ 1
1263
+ 49
1264
+ 5
1265
+ 1
1266
+ 15
1267
+ 20
1268
+ 0
1269
+ 49
1270
+ 2
1271
+ 0
1272
+ 5
1273
+ 5
1274
+ 48
1275
+ 3
1276
+ 47
1277
+ 49
1278
+ 6
1279
+ 1
1280
+ 49
1281
+ 5
1282
+ 1
1283
+ 11
1284
+ I
1285
+ 5
1286
+ I
1287
+ 1
1288
+ I
1289
+ 0
1290
+ I
1291
+ 0
1292
+ I
1293
+ -2
1294
+ p
1295
+ 7
1296
+ x
1297
+ 4
1298
+ Hash
1299
+ x
1300
+ 16
1301
+ new_from_literal
1302
+ x
1303
+ 6
1304
+ to_set
1305
+ x
1306
+ 3
1307
+ dee
1308
+ x
1309
+ 2
1310
+ eq
1311
+ x
1312
+ 6
1313
+ should
1314
+ x
1315
+ 3
1316
+ eql
1317
+ p
1318
+ 7
1319
+ I
1320
+ 0
1321
+ I
1322
+ 25
1323
+ I
1324
+ c
1325
+ I
1326
+ 26
1327
+ I
1328
+ 1d
1329
+ I
1330
+ 27
1331
+ I
1332
+ 2e
1333
+ x
1334
+ 63
1335
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1336
+ p
1337
+ 1
1338
+ x
1339
+ 3
1340
+ arr
1341
+ s
1342
+ 33
1343
+ DEE-like sets should be equal (5)
1344
+ M
1345
+ 1
1346
+ p
1347
+ 2
1348
+ x
1349
+ 9
1350
+ for_block
1351
+ t
1352
+ n
1353
+ x
1354
+ 9
1355
+ __block__
1356
+ i
1357
+ 79
1358
+ 45
1359
+ 0
1360
+ 1
1361
+ 13
1362
+ 71
1363
+ 2
1364
+ 47
1365
+ 9
1366
+ 21
1367
+ 47
1368
+ 49
1369
+ 3
1370
+ 0
1371
+ 13
1372
+ 47
1373
+ 49
1374
+ 4
1375
+ 0
1376
+ 15
1377
+ 8
1378
+ 24
1379
+ 49
1380
+ 2
1381
+ 0
1382
+ 45
1383
+ 5
1384
+ 6
1385
+ 49
1386
+ 7
1387
+ 1
1388
+ 19
1389
+ 0
1390
+ 15
1391
+ 99
1392
+ 7
1393
+ 8
1394
+ 7
1395
+ 9
1396
+ 65
1397
+ 20
1398
+ 0
1399
+ 49
1400
+ 10
1401
+ 4
1402
+ 15
1403
+ 20
1404
+ 0
1405
+ 49
1406
+ 11
1407
+ 0
1408
+ 5
1409
+ 5
1410
+ 48
1411
+ 12
1412
+ 47
1413
+ 49
1414
+ 13
1415
+ 1
1416
+ 49
1417
+ 14
1418
+ 1
1419
+ 15
1420
+ 20
1421
+ 0
1422
+ 49
1423
+ 11
1424
+ 0
1425
+ 5
1426
+ 5
1427
+ 48
1428
+ 12
1429
+ 47
1430
+ 49
1431
+ 15
1432
+ 1
1433
+ 49
1434
+ 14
1435
+ 1
1436
+ 11
1437
+ I
1438
+ 7
1439
+ I
1440
+ 1
1441
+ I
1442
+ 0
1443
+ I
1444
+ 0
1445
+ I
1446
+ -2
1447
+ p
1448
+ 16
1449
+ x
1450
+ 6
1451
+ Object
1452
+ n
1453
+ x
1454
+ 3
1455
+ new
1456
+ x
1457
+ 8
1458
+ allocate
1459
+ x
1460
+ 10
1461
+ initialize
1462
+ x
1463
+ 10
1464
+ Enumerable
1465
+ n
1466
+ x
1467
+ 6
1468
+ extend
1469
+ x
1470
+ 4
1471
+ each
1472
+ M
1473
+ 1
1474
+ n
1475
+ n
1476
+ x
1477
+ 4
1478
+ each
1479
+ i
1480
+ 10
1481
+ 44
1482
+ 43
1483
+ 0
1484
+ 78
1485
+ 49
1486
+ 1
1487
+ 1
1488
+ 60
1489
+ 1
1490
+ 11
1491
+ I
1492
+ 2
1493
+ I
1494
+ 0
1495
+ I
1496
+ 0
1497
+ I
1498
+ 0
1499
+ n
1500
+ p
1501
+ 2
1502
+ x
1503
+ 4
1504
+ Hash
1505
+ x
1506
+ 16
1507
+ new_from_literal
1508
+ p
1509
+ 5
1510
+ I
1511
+ -1
1512
+ I
1513
+ 2c
1514
+ I
1515
+ 0
1516
+ I
1517
+ 2d
1518
+ I
1519
+ a
1520
+ x
1521
+ 63
1522
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1523
+ p
1524
+ 0
1525
+ x
1526
+ 13
1527
+ attach_method
1528
+ x
1529
+ 6
1530
+ to_set
1531
+ x
1532
+ 3
1533
+ dee
1534
+ x
1535
+ 2
1536
+ eq
1537
+ x
1538
+ 6
1539
+ should
1540
+ x
1541
+ 3
1542
+ eql
1543
+ p
1544
+ 9
1545
+ I
1546
+ 0
1547
+ I
1548
+ 2b
1549
+ I
1550
+ 21
1551
+ I
1552
+ 2c
1553
+ I
1554
+ 2d
1555
+ I
1556
+ 2f
1557
+ I
1558
+ 3e
1559
+ I
1560
+ 30
1561
+ I
1562
+ 4f
1563
+ x
1564
+ 63
1565
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1566
+ p
1567
+ 1
1568
+ x
1569
+ 3
1570
+ arr
1571
+ M
1572
+ 1
1573
+ p
1574
+ 2
1575
+ x
1576
+ 9
1577
+ for_block
1578
+ t
1579
+ n
1580
+ x
1581
+ 9
1582
+ __block__
1583
+ i
1584
+ 79
1585
+ 45
1586
+ 0
1587
+ 1
1588
+ 13
1589
+ 71
1590
+ 2
1591
+ 47
1592
+ 9
1593
+ 21
1594
+ 47
1595
+ 49
1596
+ 3
1597
+ 0
1598
+ 13
1599
+ 47
1600
+ 49
1601
+ 4
1602
+ 0
1603
+ 15
1604
+ 8
1605
+ 24
1606
+ 49
1607
+ 2
1608
+ 0
1609
+ 45
1610
+ 5
1611
+ 6
1612
+ 49
1613
+ 7
1614
+ 1
1615
+ 19
1616
+ 0
1617
+ 15
1618
+ 99
1619
+ 7
1620
+ 8
1621
+ 7
1622
+ 9
1623
+ 65
1624
+ 20
1625
+ 0
1626
+ 49
1627
+ 10
1628
+ 4
1629
+ 15
1630
+ 20
1631
+ 0
1632
+ 49
1633
+ 11
1634
+ 0
1635
+ 5
1636
+ 5
1637
+ 48
1638
+ 12
1639
+ 47
1640
+ 49
1641
+ 13
1642
+ 1
1643
+ 49
1644
+ 14
1645
+ 1
1646
+ 15
1647
+ 20
1648
+ 0
1649
+ 49
1650
+ 11
1651
+ 0
1652
+ 5
1653
+ 5
1654
+ 48
1655
+ 12
1656
+ 47
1657
+ 49
1658
+ 15
1659
+ 1
1660
+ 49
1661
+ 14
1662
+ 1
1663
+ 11
1664
+ I
1665
+ 7
1666
+ I
1667
+ 1
1668
+ I
1669
+ 0
1670
+ I
1671
+ 0
1672
+ I
1673
+ -2
1674
+ p
1675
+ 16
1676
+ x
1677
+ 6
1678
+ Object
1679
+ n
1680
+ x
1681
+ 3
1682
+ new
1683
+ x
1684
+ 8
1685
+ allocate
1686
+ x
1687
+ 10
1688
+ initialize
1689
+ x
1690
+ 10
1691
+ Enumerable
1692
+ n
1693
+ x
1694
+ 6
1695
+ extend
1696
+ x
1697
+ 4
1698
+ each
1699
+ M
1700
+ 1
1701
+ n
1702
+ n
1703
+ x
1704
+ 4
1705
+ each
1706
+ i
1707
+ 33
1708
+ 44
1709
+ 43
1710
+ 0
1711
+ 79
1712
+ 49
1713
+ 1
1714
+ 1
1715
+ 13
1716
+ 7
1717
+ 2
1718
+ 7
1719
+ 3
1720
+ 64
1721
+ 49
1722
+ 4
1723
+ 2
1724
+ 15
1725
+ 19
1726
+ 0
1727
+ 15
1728
+ 20
1729
+ 0
1730
+ 7
1731
+ 2
1732
+ 49
1733
+ 5
1734
+ 1
1735
+ 15
1736
+ 20
1737
+ 0
1738
+ 60
1739
+ 1
1740
+ 11
1741
+ I
1742
+ 5
1743
+ I
1744
+ 1
1745
+ I
1746
+ 0
1747
+ I
1748
+ 0
1749
+ n
1750
+ p
1751
+ 6
1752
+ x
1753
+ 4
1754
+ Hash
1755
+ x
1756
+ 16
1757
+ new_from_literal
1758
+ x
1759
+ 3
1760
+ sid
1761
+ s
1762
+ 1
1763
+ 1
1764
+ x
1765
+ 3
1766
+ []=
1767
+ x
1768
+ 6
1769
+ delete
1770
+ p
1771
+ 9
1772
+ I
1773
+ -1
1774
+ I
1775
+ 35
1776
+ I
1777
+ 0
1778
+ I
1779
+ 36
1780
+ I
1781
+ 14
1782
+ I
1783
+ 37
1784
+ I
1785
+ 1c
1786
+ I
1787
+ 38
1788
+ I
1789
+ 21
1790
+ x
1791
+ 63
1792
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1793
+ p
1794
+ 1
1795
+ x
1796
+ 5
1797
+ tuple
1798
+ x
1799
+ 13
1800
+ attach_method
1801
+ x
1802
+ 6
1803
+ to_set
1804
+ x
1805
+ 3
1806
+ dee
1807
+ x
1808
+ 2
1809
+ eq
1810
+ x
1811
+ 6
1812
+ should
1813
+ x
1814
+ 3
1815
+ eql
1816
+ p
1817
+ 9
1818
+ I
1819
+ 0
1820
+ I
1821
+ 34
1822
+ I
1823
+ 21
1824
+ I
1825
+ 35
1826
+ I
1827
+ 2d
1828
+ I
1829
+ 3a
1830
+ I
1831
+ 3e
1832
+ I
1833
+ 3b
1834
+ I
1835
+ 4f
1836
+ x
1837
+ 63
1838
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1839
+ p
1840
+ 1
1841
+ x
1842
+ 3
1843
+ arr
1844
+ p
1845
+ 17
1846
+ I
1847
+ 0
1848
+ I
1849
+ b
1850
+ I
1851
+ a
1852
+ I
1853
+ d
1854
+ I
1855
+ 15
1856
+ I
1857
+ 12
1858
+ I
1859
+ 20
1860
+ I
1861
+ 18
1862
+ I
1863
+ 2b
1864
+ I
1865
+ 1e
1866
+ I
1867
+ 36
1868
+ I
1869
+ 24
1870
+ I
1871
+ 41
1872
+ I
1873
+ 2a
1874
+ I
1875
+ 4c
1876
+ I
1877
+ 33
1878
+ I
1879
+ 57
1880
+ x
1881
+ 63
1882
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1883
+ p
1884
+ 0
1885
+ x
1886
+ 8
1887
+ describe
1888
+ p
1889
+ 5
1890
+ I
1891
+ 0
1892
+ I
1893
+ 5
1894
+ I
1895
+ b
1896
+ I
1897
+ a
1898
+ I
1899
+ 16
1900
+ x
1901
+ 63
1902
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1903
+ p
1904
+ 0
1905
+ x
1906
+ 8
1907
+ describe
1908
+ p
1909
+ 7
1910
+ I
1911
+ 0
1912
+ I
1913
+ 1
1914
+ I
1915
+ 9
1916
+ I
1917
+ 2
1918
+ I
1919
+ 12
1920
+ I
1921
+ 3
1922
+ I
1923
+ 1f
1924
+ x
1925
+ 63
1926
+ /home/blambeau/work/devel/alf/spec/unit/assumptions/test_set.rb
1927
+ p
1928
+ 0