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,2588 @@
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
+ 8
111
+ Relation
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
+ 149
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
+ 56
141
+ 4
142
+ 47
143
+ 50
144
+ 2
145
+ 1
146
+ 15
147
+ 5
148
+ 7
149
+ 5
150
+ 56
151
+ 6
152
+ 47
153
+ 50
154
+ 2
155
+ 1
156
+ 15
157
+ 5
158
+ 7
159
+ 7
160
+ 56
161
+ 8
162
+ 47
163
+ 50
164
+ 2
165
+ 1
166
+ 15
167
+ 5
168
+ 7
169
+ 9
170
+ 56
171
+ 10
172
+ 47
173
+ 50
174
+ 2
175
+ 1
176
+ 15
177
+ 5
178
+ 7
179
+ 11
180
+ 64
181
+ 56
182
+ 12
183
+ 47
184
+ 50
185
+ 13
186
+ 1
187
+ 15
188
+ 5
189
+ 7
190
+ 14
191
+ 64
192
+ 56
193
+ 15
194
+ 47
195
+ 50
196
+ 13
197
+ 1
198
+ 15
199
+ 5
200
+ 7
201
+ 16
202
+ 64
203
+ 56
204
+ 17
205
+ 47
206
+ 50
207
+ 13
208
+ 1
209
+ 15
210
+ 5
211
+ 7
212
+ 18
213
+ 64
214
+ 56
215
+ 19
216
+ 47
217
+ 50
218
+ 13
219
+ 1
220
+ 15
221
+ 5
222
+ 7
223
+ 20
224
+ 64
225
+ 56
226
+ 21
227
+ 47
228
+ 50
229
+ 13
230
+ 1
231
+ 15
232
+ 5
233
+ 7
234
+ 22
235
+ 64
236
+ 56
237
+ 23
238
+ 47
239
+ 50
240
+ 24
241
+ 1
242
+ 15
243
+ 5
244
+ 7
245
+ 25
246
+ 64
247
+ 56
248
+ 26
249
+ 47
250
+ 50
251
+ 27
252
+ 1
253
+ 15
254
+ 5
255
+ 7
256
+ 28
257
+ 64
258
+ 56
259
+ 29
260
+ 47
261
+ 50
262
+ 24
263
+ 1
264
+ 15
265
+ 5
266
+ 7
267
+ 30
268
+ 64
269
+ 56
270
+ 31
271
+ 47
272
+ 50
273
+ 24
274
+ 1
275
+ 11
276
+ I
277
+ 4
278
+ I
279
+ 0
280
+ I
281
+ 0
282
+ I
283
+ 0
284
+ I
285
+ -2
286
+ p
287
+ 32
288
+ x
289
+ 6
290
+ tuples
291
+ M
292
+ 1
293
+ p
294
+ 2
295
+ x
296
+ 9
297
+ for_block
298
+ t
299
+ n
300
+ x
301
+ 3
302
+ Alf
303
+ i
304
+ 144
305
+ 44
306
+ 43
307
+ 0
308
+ 4
309
+ 4
310
+ 49
311
+ 1
312
+ 1
313
+ 13
314
+ 7
315
+ 2
316
+ 7
317
+ 3
318
+ 64
319
+ 49
320
+ 4
321
+ 2
322
+ 15
323
+ 13
324
+ 7
325
+ 5
326
+ 7
327
+ 6
328
+ 64
329
+ 49
330
+ 4
331
+ 2
332
+ 15
333
+ 13
334
+ 7
335
+ 7
336
+ 4
337
+ 20
338
+ 49
339
+ 4
340
+ 2
341
+ 15
342
+ 13
343
+ 7
344
+ 8
345
+ 7
346
+ 9
347
+ 64
348
+ 49
349
+ 4
350
+ 2
351
+ 15
352
+ 44
353
+ 43
354
+ 0
355
+ 4
356
+ 4
357
+ 49
358
+ 1
359
+ 1
360
+ 13
361
+ 7
362
+ 2
363
+ 7
364
+ 10
365
+ 64
366
+ 49
367
+ 4
368
+ 2
369
+ 15
370
+ 13
371
+ 7
372
+ 5
373
+ 7
374
+ 11
375
+ 64
376
+ 49
377
+ 4
378
+ 2
379
+ 15
380
+ 13
381
+ 7
382
+ 7
383
+ 4
384
+ 10
385
+ 49
386
+ 4
387
+ 2
388
+ 15
389
+ 13
390
+ 7
391
+ 8
392
+ 7
393
+ 12
394
+ 64
395
+ 49
396
+ 4
397
+ 2
398
+ 15
399
+ 44
400
+ 43
401
+ 0
402
+ 4
403
+ 4
404
+ 49
405
+ 1
406
+ 1
407
+ 13
408
+ 7
409
+ 2
410
+ 7
411
+ 13
412
+ 64
413
+ 49
414
+ 4
415
+ 2
416
+ 15
417
+ 13
418
+ 7
419
+ 5
420
+ 7
421
+ 14
422
+ 64
423
+ 49
424
+ 4
425
+ 2
426
+ 15
427
+ 13
428
+ 7
429
+ 7
430
+ 4
431
+ 30
432
+ 49
433
+ 4
434
+ 2
435
+ 15
436
+ 13
437
+ 7
438
+ 8
439
+ 7
440
+ 12
441
+ 64
442
+ 49
443
+ 4
444
+ 2
445
+ 15
446
+ 35
447
+ 3
448
+ 11
449
+ I
450
+ 7
451
+ I
452
+ 0
453
+ I
454
+ 0
455
+ I
456
+ 0
457
+ I
458
+ -2
459
+ p
460
+ 15
461
+ x
462
+ 4
463
+ Hash
464
+ x
465
+ 16
466
+ new_from_literal
467
+ x
468
+ 3
469
+ sid
470
+ s
471
+ 2
472
+ S1
473
+ x
474
+ 3
475
+ []=
476
+ x
477
+ 4
478
+ name
479
+ s
480
+ 5
481
+ Smith
482
+ x
483
+ 6
484
+ status
485
+ x
486
+ 4
487
+ city
488
+ s
489
+ 6
490
+ London
491
+ s
492
+ 2
493
+ S2
494
+ s
495
+ 5
496
+ Jones
497
+ s
498
+ 5
499
+ Paris
500
+ s
501
+ 2
502
+ S3
503
+ s
504
+ 5
505
+ Blake
506
+ p
507
+ 7
508
+ I
509
+ 0
510
+ I
511
+ 6
512
+ I
513
+ 2f
514
+ I
515
+ 7
516
+ I
517
+ 5e
518
+ I
519
+ 8
520
+ I
521
+ 90
522
+ x
523
+ 56
524
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
525
+ p
526
+ 0
527
+ x
528
+ 3
529
+ let
530
+ x
531
+ 7
532
+ tuples2
533
+ M
534
+ 1
535
+ p
536
+ 2
537
+ x
538
+ 9
539
+ for_block
540
+ t
541
+ n
542
+ x
543
+ 3
544
+ Alf
545
+ i
546
+ 9
547
+ 5
548
+ 48
549
+ 0
550
+ 56
551
+ 1
552
+ 50
553
+ 2
554
+ 0
555
+ 11
556
+ I
557
+ 3
558
+ I
559
+ 0
560
+ I
561
+ 0
562
+ I
563
+ 0
564
+ I
565
+ -2
566
+ p
567
+ 3
568
+ x
569
+ 6
570
+ tuples
571
+ M
572
+ 1
573
+ p
574
+ 2
575
+ x
576
+ 9
577
+ for_block
578
+ t
579
+ n
580
+ x
581
+ 3
582
+ Alf
583
+ i
584
+ 28
585
+ 58
586
+ 37
587
+ 19
588
+ 0
589
+ 15
590
+ 37
591
+ 19
592
+ 1
593
+ 15
594
+ 15
595
+ 20
596
+ 0
597
+ 7
598
+ 0
599
+ 49
600
+ 1
601
+ 1
602
+ 20
603
+ 1
604
+ 7
605
+ 0
606
+ 49
607
+ 1
608
+ 1
609
+ 49
610
+ 2
611
+ 1
612
+ 11
613
+ I
614
+ 6
615
+ I
616
+ 2
617
+ I
618
+ 2
619
+ I
620
+ 2
621
+ n
622
+ p
623
+ 3
624
+ x
625
+ 4
626
+ name
627
+ x
628
+ 2
629
+ []
630
+ x
631
+ 3
632
+ <=>
633
+ p
634
+ 3
635
+ I
636
+ 0
637
+ I
638
+ a
639
+ I
640
+ 1c
641
+ x
642
+ 56
643
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
644
+ p
645
+ 2
646
+ x
647
+ 2
648
+ t1
649
+ x
650
+ 2
651
+ t2
652
+ x
653
+ 4
654
+ sort
655
+ p
656
+ 3
657
+ I
658
+ 0
659
+ I
660
+ a
661
+ I
662
+ 9
663
+ x
664
+ 56
665
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
666
+ p
667
+ 0
668
+ x
669
+ 4
670
+ rel1
671
+ M
672
+ 1
673
+ p
674
+ 2
675
+ x
676
+ 9
677
+ for_block
678
+ t
679
+ n
680
+ x
681
+ 3
682
+ Alf
683
+ i
684
+ 37
685
+ 45
686
+ 0
687
+ 1
688
+ 13
689
+ 71
690
+ 2
691
+ 47
692
+ 9
693
+ 27
694
+ 47
695
+ 49
696
+ 3
697
+ 0
698
+ 13
699
+ 5
700
+ 48
701
+ 4
702
+ 49
703
+ 5
704
+ 0
705
+ 47
706
+ 49
707
+ 6
708
+ 1
709
+ 15
710
+ 8
711
+ 36
712
+ 5
713
+ 48
714
+ 4
715
+ 49
716
+ 5
717
+ 0
718
+ 49
719
+ 2
720
+ 1
721
+ 11
722
+ I
723
+ 4
724
+ I
725
+ 0
726
+ I
727
+ 0
728
+ I
729
+ 0
730
+ I
731
+ -2
732
+ p
733
+ 7
734
+ x
735
+ 8
736
+ Relation
737
+ n
738
+ x
739
+ 3
740
+ new
741
+ x
742
+ 8
743
+ allocate
744
+ x
745
+ 6
746
+ tuples
747
+ x
748
+ 6
749
+ to_set
750
+ x
751
+ 10
752
+ initialize
753
+ p
754
+ 3
755
+ I
756
+ 0
757
+ I
758
+ c
759
+ I
760
+ 25
761
+ x
762
+ 56
763
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
764
+ p
765
+ 0
766
+ x
767
+ 4
768
+ rel2
769
+ M
770
+ 1
771
+ p
772
+ 2
773
+ x
774
+ 9
775
+ for_block
776
+ t
777
+ n
778
+ x
779
+ 3
780
+ Alf
781
+ i
782
+ 37
783
+ 45
784
+ 0
785
+ 1
786
+ 13
787
+ 71
788
+ 2
789
+ 47
790
+ 9
791
+ 27
792
+ 47
793
+ 49
794
+ 3
795
+ 0
796
+ 13
797
+ 5
798
+ 48
799
+ 4
800
+ 49
801
+ 5
802
+ 0
803
+ 47
804
+ 49
805
+ 6
806
+ 1
807
+ 15
808
+ 8
809
+ 36
810
+ 5
811
+ 48
812
+ 4
813
+ 49
814
+ 5
815
+ 0
816
+ 49
817
+ 2
818
+ 1
819
+ 11
820
+ I
821
+ 4
822
+ I
823
+ 0
824
+ I
825
+ 0
826
+ I
827
+ 0
828
+ I
829
+ -2
830
+ p
831
+ 7
832
+ x
833
+ 8
834
+ Relation
835
+ n
836
+ x
837
+ 3
838
+ new
839
+ x
840
+ 8
841
+ allocate
842
+ x
843
+ 7
844
+ tuples2
845
+ x
846
+ 6
847
+ to_set
848
+ x
849
+ 10
850
+ initialize
851
+ p
852
+ 3
853
+ I
854
+ 0
855
+ I
856
+ d
857
+ I
858
+ 25
859
+ x
860
+ 56
861
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
862
+ p
863
+ 0
864
+ x
865
+ 4
866
+ rel3
867
+ M
868
+ 1
869
+ p
870
+ 2
871
+ x
872
+ 9
873
+ for_block
874
+ t
875
+ n
876
+ x
877
+ 3
878
+ Alf
879
+ i
880
+ 59
881
+ 45
882
+ 0
883
+ 1
884
+ 13
885
+ 71
886
+ 2
887
+ 47
888
+ 9
889
+ 38
890
+ 47
891
+ 49
892
+ 3
893
+ 0
894
+ 13
895
+ 5
896
+ 48
897
+ 4
898
+ 44
899
+ 43
900
+ 5
901
+ 78
902
+ 79
903
+ 49
904
+ 2
905
+ 2
906
+ 49
907
+ 6
908
+ 1
909
+ 49
910
+ 7
911
+ 0
912
+ 47
913
+ 49
914
+ 8
915
+ 1
916
+ 15
917
+ 8
918
+ 58
919
+ 5
920
+ 48
921
+ 4
922
+ 44
923
+ 43
924
+ 5
925
+ 78
926
+ 79
927
+ 49
928
+ 2
929
+ 2
930
+ 49
931
+ 6
932
+ 1
933
+ 49
934
+ 7
935
+ 0
936
+ 49
937
+ 2
938
+ 1
939
+ 11
940
+ I
941
+ 7
942
+ I
943
+ 0
944
+ I
945
+ 0
946
+ I
947
+ 0
948
+ I
949
+ -2
950
+ p
951
+ 9
952
+ x
953
+ 8
954
+ Relation
955
+ n
956
+ x
957
+ 3
958
+ new
959
+ x
960
+ 8
961
+ allocate
962
+ x
963
+ 6
964
+ tuples
965
+ x
966
+ 5
967
+ Range
968
+ x
969
+ 2
970
+ []
971
+ x
972
+ 6
973
+ to_set
974
+ x
975
+ 10
976
+ initialize
977
+ p
978
+ 3
979
+ I
980
+ 0
981
+ I
982
+ e
983
+ I
984
+ 3b
985
+ x
986
+ 56
987
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
988
+ p
989
+ 0
990
+ s
991
+ 32
992
+ should have a cardinality method
993
+ M
994
+ 1
995
+ p
996
+ 2
997
+ x
998
+ 9
999
+ for_block
1000
+ t
1001
+ n
1002
+ x
1003
+ 3
1004
+ Alf
1005
+ i
1006
+ 14
1007
+ 5
1008
+ 48
1009
+ 0
1010
+ 49
1011
+ 1
1012
+ 0
1013
+ 49
1014
+ 2
1015
+ 0
1016
+ 4
1017
+ 3
1018
+ 83
1019
+ 3
1020
+ 11
1021
+ I
1022
+ 3
1023
+ I
1024
+ 0
1025
+ I
1026
+ 0
1027
+ I
1028
+ 0
1029
+ I
1030
+ -2
1031
+ p
1032
+ 4
1033
+ x
1034
+ 4
1035
+ rel1
1036
+ x
1037
+ 11
1038
+ cardinality
1039
+ x
1040
+ 6
1041
+ should
1042
+ x
1043
+ 2
1044
+ ==
1045
+ p
1046
+ 3
1047
+ I
1048
+ 0
1049
+ I
1050
+ 11
1051
+ I
1052
+ e
1053
+ x
1054
+ 56
1055
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1056
+ p
1057
+ 0
1058
+ x
1059
+ 2
1060
+ it
1061
+ s
1062
+ 28
1063
+ should have an empty? method
1064
+ M
1065
+ 1
1066
+ p
1067
+ 2
1068
+ x
1069
+ 9
1070
+ for_block
1071
+ t
1072
+ n
1073
+ x
1074
+ 3
1075
+ Alf
1076
+ i
1077
+ 25
1078
+ 45
1079
+ 0
1080
+ 1
1081
+ 43
1082
+ 2
1083
+ 49
1084
+ 3
1085
+ 0
1086
+ 5
1087
+ 48
1088
+ 4
1089
+ 49
1090
+ 5
1091
+ 1
1092
+ 15
1093
+ 5
1094
+ 48
1095
+ 6
1096
+ 5
1097
+ 48
1098
+ 4
1099
+ 49
1100
+ 7
1101
+ 1
1102
+ 11
1103
+ I
1104
+ 3
1105
+ I
1106
+ 0
1107
+ I
1108
+ 0
1109
+ I
1110
+ 0
1111
+ I
1112
+ -2
1113
+ p
1114
+ 8
1115
+ x
1116
+ 3
1117
+ Alf
1118
+ n
1119
+ x
1120
+ 8
1121
+ Relation
1122
+ x
1123
+ 2
1124
+ []
1125
+ x
1126
+ 8
1127
+ be_empty
1128
+ x
1129
+ 6
1130
+ should
1131
+ x
1132
+ 4
1133
+ rel1
1134
+ x
1135
+ 10
1136
+ should_not
1137
+ p
1138
+ 5
1139
+ I
1140
+ 0
1141
+ I
1142
+ 15
1143
+ I
1144
+ f
1145
+ I
1146
+ 16
1147
+ I
1148
+ 19
1149
+ x
1150
+ 56
1151
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1152
+ p
1153
+ 0
1154
+ s
1155
+ 26
1156
+ should define == correctly
1157
+ M
1158
+ 1
1159
+ p
1160
+ 2
1161
+ x
1162
+ 9
1163
+ for_block
1164
+ t
1165
+ n
1166
+ x
1167
+ 3
1168
+ Alf
1169
+ i
1170
+ 36
1171
+ 5
1172
+ 48
1173
+ 0
1174
+ 49
1175
+ 1
1176
+ 0
1177
+ 5
1178
+ 48
1179
+ 2
1180
+ 83
1181
+ 3
1182
+ 15
1183
+ 5
1184
+ 48
1185
+ 2
1186
+ 49
1187
+ 1
1188
+ 0
1189
+ 5
1190
+ 48
1191
+ 0
1192
+ 83
1193
+ 3
1194
+ 15
1195
+ 5
1196
+ 48
1197
+ 4
1198
+ 49
1199
+ 5
1200
+ 0
1201
+ 5
1202
+ 48
1203
+ 0
1204
+ 83
1205
+ 3
1206
+ 11
1207
+ I
1208
+ 3
1209
+ I
1210
+ 0
1211
+ I
1212
+ 0
1213
+ I
1214
+ 0
1215
+ I
1216
+ -2
1217
+ p
1218
+ 6
1219
+ x
1220
+ 4
1221
+ rel1
1222
+ x
1223
+ 6
1224
+ should
1225
+ x
1226
+ 4
1227
+ rel2
1228
+ x
1229
+ 2
1230
+ ==
1231
+ x
1232
+ 4
1233
+ rel3
1234
+ x
1235
+ 10
1236
+ should_not
1237
+ p
1238
+ 7
1239
+ I
1240
+ 0
1241
+ I
1242
+ 1a
1243
+ I
1244
+ c
1245
+ I
1246
+ 1b
1247
+ I
1248
+ 18
1249
+ I
1250
+ 1c
1251
+ I
1252
+ 24
1253
+ x
1254
+ 56
1255
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1256
+ p
1257
+ 0
1258
+ s
1259
+ 35
1260
+ should allow putting them in hashes
1261
+ M
1262
+ 1
1263
+ p
1264
+ 2
1265
+ x
1266
+ 9
1267
+ for_block
1268
+ t
1269
+ n
1270
+ x
1271
+ 3
1272
+ Alf
1273
+ i
1274
+ 80
1275
+ 44
1276
+ 43
1277
+ 0
1278
+ 78
1279
+ 49
1280
+ 1
1281
+ 1
1282
+ 19
1283
+ 0
1284
+ 15
1285
+ 20
1286
+ 0
1287
+ 5
1288
+ 48
1289
+ 2
1290
+ 79
1291
+ 13
1292
+ 18
1293
+ 3
1294
+ 49
1295
+ 3
1296
+ 2
1297
+ 15
1298
+ 15
1299
+ 20
1300
+ 0
1301
+ 5
1302
+ 48
1303
+ 4
1304
+ 80
1305
+ 13
1306
+ 18
1307
+ 3
1308
+ 49
1309
+ 3
1310
+ 2
1311
+ 15
1312
+ 15
1313
+ 20
1314
+ 0
1315
+ 5
1316
+ 48
1317
+ 5
1318
+ 4
1319
+ 3
1320
+ 13
1321
+ 18
1322
+ 3
1323
+ 49
1324
+ 3
1325
+ 2
1326
+ 15
1327
+ 15
1328
+ 20
1329
+ 0
1330
+ 49
1331
+ 6
1332
+ 0
1333
+ 49
1334
+ 7
1335
+ 0
1336
+ 80
1337
+ 83
1338
+ 8
1339
+ 15
1340
+ 20
1341
+ 0
1342
+ 5
1343
+ 48
1344
+ 2
1345
+ 49
1346
+ 9
1347
+ 1
1348
+ 49
1349
+ 7
1350
+ 0
1351
+ 80
1352
+ 83
1353
+ 8
1354
+ 11
1355
+ I
1356
+ 6
1357
+ I
1358
+ 1
1359
+ I
1360
+ 0
1361
+ I
1362
+ 0
1363
+ I
1364
+ -2
1365
+ p
1366
+ 10
1367
+ x
1368
+ 4
1369
+ Hash
1370
+ x
1371
+ 16
1372
+ new_from_literal
1373
+ x
1374
+ 4
1375
+ rel1
1376
+ x
1377
+ 3
1378
+ []=
1379
+ x
1380
+ 4
1381
+ rel2
1382
+ x
1383
+ 4
1384
+ rel3
1385
+ x
1386
+ 4
1387
+ size
1388
+ x
1389
+ 6
1390
+ should
1391
+ x
1392
+ 2
1393
+ ==
1394
+ x
1395
+ 2
1396
+ []
1397
+ p
1398
+ 13
1399
+ I
1400
+ 0
1401
+ I
1402
+ 20
1403
+ I
1404
+ a
1405
+ I
1406
+ 21
1407
+ I
1408
+ 18
1409
+ I
1410
+ 22
1411
+ I
1412
+ 26
1413
+ I
1414
+ 23
1415
+ I
1416
+ 35
1417
+ I
1418
+ 24
1419
+ I
1420
+ 41
1421
+ I
1422
+ 25
1423
+ I
1424
+ 50
1425
+ x
1426
+ 56
1427
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1428
+ p
1429
+ 1
1430
+ x
1431
+ 1
1432
+ h
1433
+ s
1434
+ 20
1435
+ should be enumerable
1436
+ M
1437
+ 1
1438
+ p
1439
+ 2
1440
+ x
1441
+ 9
1442
+ for_block
1443
+ t
1444
+ n
1445
+ x
1446
+ 3
1447
+ Alf
1448
+ i
1449
+ 20
1450
+ 5
1451
+ 48
1452
+ 0
1453
+ 49
1454
+ 1
1455
+ 0
1456
+ 56
1457
+ 2
1458
+ 50
1459
+ 3
1460
+ 0
1461
+ 49
1462
+ 4
1463
+ 0
1464
+ 5
1465
+ 48
1466
+ 5
1467
+ 83
1468
+ 6
1469
+ 11
1470
+ I
1471
+ 3
1472
+ I
1473
+ 0
1474
+ I
1475
+ 0
1476
+ I
1477
+ 0
1478
+ I
1479
+ -2
1480
+ p
1481
+ 7
1482
+ x
1483
+ 4
1484
+ rel1
1485
+ x
1486
+ 4
1487
+ to_a
1488
+ M
1489
+ 1
1490
+ p
1491
+ 2
1492
+ x
1493
+ 9
1494
+ for_block
1495
+ t
1496
+ n
1497
+ x
1498
+ 3
1499
+ Alf
1500
+ i
1501
+ 28
1502
+ 58
1503
+ 37
1504
+ 19
1505
+ 0
1506
+ 15
1507
+ 37
1508
+ 19
1509
+ 1
1510
+ 15
1511
+ 15
1512
+ 20
1513
+ 0
1514
+ 7
1515
+ 0
1516
+ 49
1517
+ 1
1518
+ 1
1519
+ 20
1520
+ 1
1521
+ 7
1522
+ 0
1523
+ 49
1524
+ 1
1525
+ 1
1526
+ 49
1527
+ 2
1528
+ 1
1529
+ 11
1530
+ I
1531
+ 6
1532
+ I
1533
+ 2
1534
+ I
1535
+ 2
1536
+ I
1537
+ 2
1538
+ n
1539
+ p
1540
+ 3
1541
+ x
1542
+ 3
1543
+ sid
1544
+ x
1545
+ 2
1546
+ []
1547
+ x
1548
+ 3
1549
+ <=>
1550
+ p
1551
+ 3
1552
+ I
1553
+ 0
1554
+ I
1555
+ 29
1556
+ I
1557
+ 1c
1558
+ x
1559
+ 56
1560
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1561
+ p
1562
+ 2
1563
+ x
1564
+ 2
1565
+ t1
1566
+ x
1567
+ 2
1568
+ t2
1569
+ x
1570
+ 4
1571
+ sort
1572
+ x
1573
+ 6
1574
+ should
1575
+ x
1576
+ 6
1577
+ tuples
1578
+ x
1579
+ 2
1580
+ ==
1581
+ p
1582
+ 3
1583
+ I
1584
+ 0
1585
+ I
1586
+ 29
1587
+ I
1588
+ 14
1589
+ x
1590
+ 56
1591
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1592
+ p
1593
+ 0
1594
+ s
1595
+ 4
1596
+ rel1
1597
+ M
1598
+ 1
1599
+ p
1600
+ 2
1601
+ x
1602
+ 9
1603
+ for_block
1604
+ t
1605
+ n
1606
+ x
1607
+ 3
1608
+ Alf
1609
+ i
1610
+ 17
1611
+ 5
1612
+ 56
1613
+ 0
1614
+ 47
1615
+ 50
1616
+ 1
1617
+ 0
1618
+ 15
1619
+ 5
1620
+ 7
1621
+ 2
1622
+ 64
1623
+ 47
1624
+ 49
1625
+ 3
1626
+ 1
1627
+ 11
1628
+ I
1629
+ 3
1630
+ I
1631
+ 0
1632
+ I
1633
+ 0
1634
+ I
1635
+ 0
1636
+ I
1637
+ -2
1638
+ p
1639
+ 4
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
+ 4
1654
+ 5
1655
+ 48
1656
+ 0
1657
+ 11
1658
+ I
1659
+ 2
1660
+ I
1661
+ 0
1662
+ I
1663
+ 0
1664
+ I
1665
+ 0
1666
+ I
1667
+ -2
1668
+ p
1669
+ 1
1670
+ x
1671
+ 4
1672
+ rel1
1673
+ p
1674
+ 3
1675
+ I
1676
+ 0
1677
+ I
1678
+ 2d
1679
+ I
1680
+ 4
1681
+ x
1682
+ 56
1683
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1684
+ p
1685
+ 0
1686
+ x
1687
+ 7
1688
+ subject
1689
+ s
1690
+ 7
1691
+ A value
1692
+ x
1693
+ 21
1694
+ it_should_behave_like
1695
+ p
1696
+ 5
1697
+ I
1698
+ 0
1699
+ I
1700
+ 2d
1701
+ I
1702
+ 8
1703
+ I
1704
+ 2e
1705
+ I
1706
+ 11
1707
+ x
1708
+ 56
1709
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1710
+ p
1711
+ 0
1712
+ x
1713
+ 8
1714
+ describe
1715
+ s
1716
+ 51
1717
+ different empty relations instances should be equal
1718
+ M
1719
+ 1
1720
+ p
1721
+ 2
1722
+ x
1723
+ 9
1724
+ for_block
1725
+ t
1726
+ n
1727
+ x
1728
+ 3
1729
+ Alf
1730
+ i
1731
+ 188
1732
+ 45
1733
+ 0
1734
+ 1
1735
+ 13
1736
+ 71
1737
+ 2
1738
+ 47
1739
+ 9
1740
+ 45
1741
+ 47
1742
+ 49
1743
+ 3
1744
+ 0
1745
+ 13
1746
+ 45
1747
+ 4
1748
+ 5
1749
+ 13
1750
+ 71
1751
+ 2
1752
+ 47
1753
+ 9
1754
+ 35
1755
+ 47
1756
+ 49
1757
+ 3
1758
+ 0
1759
+ 13
1760
+ 47
1761
+ 49
1762
+ 6
1763
+ 0
1764
+ 15
1765
+ 8
1766
+ 38
1767
+ 49
1768
+ 2
1769
+ 0
1770
+ 47
1771
+ 49
1772
+ 6
1773
+ 1
1774
+ 15
1775
+ 8
1776
+ 72
1777
+ 45
1778
+ 4
1779
+ 7
1780
+ 13
1781
+ 71
1782
+ 2
1783
+ 47
1784
+ 9
1785
+ 66
1786
+ 47
1787
+ 49
1788
+ 3
1789
+ 0
1790
+ 13
1791
+ 47
1792
+ 49
1793
+ 6
1794
+ 0
1795
+ 15
1796
+ 8
1797
+ 69
1798
+ 49
1799
+ 2
1800
+ 0
1801
+ 49
1802
+ 2
1803
+ 1
1804
+ 5
1805
+ 45
1806
+ 0
1807
+ 8
1808
+ 13
1809
+ 71
1810
+ 2
1811
+ 47
1812
+ 9
1813
+ 118
1814
+ 47
1815
+ 49
1816
+ 3
1817
+ 0
1818
+ 13
1819
+ 45
1820
+ 4
1821
+ 9
1822
+ 13
1823
+ 71
1824
+ 2
1825
+ 47
1826
+ 9
1827
+ 108
1828
+ 47
1829
+ 49
1830
+ 3
1831
+ 0
1832
+ 13
1833
+ 47
1834
+ 49
1835
+ 6
1836
+ 0
1837
+ 15
1838
+ 8
1839
+ 111
1840
+ 49
1841
+ 2
1842
+ 0
1843
+ 47
1844
+ 49
1845
+ 6
1846
+ 1
1847
+ 15
1848
+ 8
1849
+ 145
1850
+ 45
1851
+ 4
1852
+ 10
1853
+ 13
1854
+ 71
1855
+ 2
1856
+ 47
1857
+ 9
1858
+ 139
1859
+ 47
1860
+ 49
1861
+ 3
1862
+ 0
1863
+ 13
1864
+ 47
1865
+ 49
1866
+ 6
1867
+ 0
1868
+ 15
1869
+ 8
1870
+ 142
1871
+ 49
1872
+ 2
1873
+ 0
1874
+ 49
1875
+ 2
1876
+ 1
1877
+ 47
1878
+ 49
1879
+ 11
1880
+ 1
1881
+ 49
1882
+ 12
1883
+ 1
1884
+ 15
1885
+ 45
1886
+ 0
1887
+ 13
1888
+ 44
1889
+ 43
1890
+ 14
1891
+ 78
1892
+ 49
1893
+ 15
1894
+ 1
1895
+ 49
1896
+ 16
1897
+ 1
1898
+ 5
1899
+ 45
1900
+ 0
1901
+ 17
1902
+ 44
1903
+ 43
1904
+ 14
1905
+ 78
1906
+ 49
1907
+ 15
1908
+ 1
1909
+ 49
1910
+ 16
1911
+ 1
1912
+ 47
1913
+ 49
1914
+ 11
1915
+ 1
1916
+ 49
1917
+ 12
1918
+ 1
1919
+ 11
1920
+ I
1921
+ 7
1922
+ I
1923
+ 0
1924
+ I
1925
+ 0
1926
+ I
1927
+ 0
1928
+ I
1929
+ -2
1930
+ p
1931
+ 18
1932
+ x
1933
+ 8
1934
+ Relation
1935
+ n
1936
+ x
1937
+ 3
1938
+ new
1939
+ x
1940
+ 8
1941
+ allocate
1942
+ x
1943
+ 3
1944
+ Set
1945
+ n
1946
+ x
1947
+ 10
1948
+ initialize
1949
+ n
1950
+ n
1951
+ n
1952
+ n
1953
+ x
1954
+ 2
1955
+ eq
1956
+ x
1957
+ 6
1958
+ should
1959
+ n
1960
+ x
1961
+ 4
1962
+ Hash
1963
+ x
1964
+ 16
1965
+ new_from_literal
1966
+ x
1967
+ 2
1968
+ []
1969
+ n
1970
+ p
1971
+ 5
1972
+ I
1973
+ 0
1974
+ I
1975
+ 32
1976
+ I
1977
+ 99
1978
+ I
1979
+ 33
1980
+ I
1981
+ bc
1982
+ x
1983
+ 56
1984
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
1985
+ p
1986
+ 0
1987
+ x
1988
+ 7
1989
+ specify
1990
+ s
1991
+ 3
1992
+ DUM
1993
+ M
1994
+ 1
1995
+ p
1996
+ 2
1997
+ x
1998
+ 9
1999
+ for_block
2000
+ t
2001
+ n
2002
+ x
2003
+ 3
2004
+ Alf
2005
+ i
2006
+ 25
2007
+ 5
2008
+ 56
2009
+ 0
2010
+ 47
2011
+ 50
2012
+ 1
2013
+ 0
2014
+ 15
2015
+ 5
2016
+ 7
2017
+ 2
2018
+ 64
2019
+ 47
2020
+ 49
2021
+ 3
2022
+ 1
2023
+ 15
2024
+ 5
2025
+ 56
2026
+ 4
2027
+ 47
2028
+ 50
2029
+ 5
2030
+ 0
2031
+ 11
2032
+ I
2033
+ 3
2034
+ I
2035
+ 0
2036
+ I
2037
+ 0
2038
+ I
2039
+ 0
2040
+ I
2041
+ -2
2042
+ p
2043
+ 6
2044
+ M
2045
+ 1
2046
+ p
2047
+ 2
2048
+ x
2049
+ 9
2050
+ for_block
2051
+ t
2052
+ n
2053
+ x
2054
+ 3
2055
+ Alf
2056
+ i
2057
+ 6
2058
+ 45
2059
+ 0
2060
+ 1
2061
+ 43
2062
+ 2
2063
+ 11
2064
+ I
2065
+ 2
2066
+ I
2067
+ 0
2068
+ I
2069
+ 0
2070
+ I
2071
+ 0
2072
+ I
2073
+ -2
2074
+ p
2075
+ 3
2076
+ x
2077
+ 8
2078
+ Relation
2079
+ n
2080
+ x
2081
+ 3
2082
+ DUM
2083
+ p
2084
+ 3
2085
+ I
2086
+ 0
2087
+ I
2088
+ 37
2089
+ I
2090
+ 6
2091
+ x
2092
+ 56
2093
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2094
+ p
2095
+ 0
2096
+ x
2097
+ 7
2098
+ subject
2099
+ s
2100
+ 7
2101
+ A value
2102
+ x
2103
+ 21
2104
+ it_should_behave_like
2105
+ M
2106
+ 1
2107
+ p
2108
+ 2
2109
+ x
2110
+ 9
2111
+ for_block
2112
+ t
2113
+ n
2114
+ x
2115
+ 3
2116
+ Alf
2117
+ i
2118
+ 37
2119
+ 5
2120
+ 48
2121
+ 0
2122
+ 49
2123
+ 1
2124
+ 0
2125
+ 49
2126
+ 2
2127
+ 0
2128
+ 78
2129
+ 83
2130
+ 3
2131
+ 15
2132
+ 5
2133
+ 48
2134
+ 0
2135
+ 49
2136
+ 4
2137
+ 0
2138
+ 49
2139
+ 2
2140
+ 0
2141
+ 35
2142
+ 0
2143
+ 83
2144
+ 3
2145
+ 15
2146
+ 5
2147
+ 48
2148
+ 0
2149
+ 5
2150
+ 48
2151
+ 5
2152
+ 49
2153
+ 2
2154
+ 1
2155
+ 11
2156
+ I
2157
+ 3
2158
+ I
2159
+ 0
2160
+ I
2161
+ 0
2162
+ I
2163
+ 0
2164
+ I
2165
+ -2
2166
+ p
2167
+ 6
2168
+ x
2169
+ 7
2170
+ subject
2171
+ x
2172
+ 11
2173
+ cardinality
2174
+ x
2175
+ 6
2176
+ should
2177
+ x
2178
+ 2
2179
+ ==
2180
+ x
2181
+ 4
2182
+ to_a
2183
+ x
2184
+ 8
2185
+ be_empty
2186
+ p
2187
+ 7
2188
+ I
2189
+ 0
2190
+ I
2191
+ 3a
2192
+ I
2193
+ d
2194
+ I
2195
+ 3b
2196
+ I
2197
+ 1b
2198
+ I
2199
+ 3c
2200
+ I
2201
+ 25
2202
+ x
2203
+ 56
2204
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2205
+ p
2206
+ 0
2207
+ x
2208
+ 7
2209
+ specify
2210
+ p
2211
+ 7
2212
+ I
2213
+ 0
2214
+ I
2215
+ 37
2216
+ I
2217
+ 8
2218
+ I
2219
+ 38
2220
+ I
2221
+ 11
2222
+ I
2223
+ 39
2224
+ I
2225
+ 19
2226
+ x
2227
+ 56
2228
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2229
+ p
2230
+ 0
2231
+ s
2232
+ 3
2233
+ DEE
2234
+ M
2235
+ 1
2236
+ p
2237
+ 2
2238
+ x
2239
+ 9
2240
+ for_block
2241
+ t
2242
+ n
2243
+ x
2244
+ 3
2245
+ Alf
2246
+ i
2247
+ 25
2248
+ 5
2249
+ 56
2250
+ 0
2251
+ 47
2252
+ 50
2253
+ 1
2254
+ 0
2255
+ 15
2256
+ 5
2257
+ 7
2258
+ 2
2259
+ 64
2260
+ 47
2261
+ 49
2262
+ 3
2263
+ 1
2264
+ 15
2265
+ 5
2266
+ 56
2267
+ 4
2268
+ 47
2269
+ 50
2270
+ 5
2271
+ 0
2272
+ 11
2273
+ I
2274
+ 3
2275
+ I
2276
+ 0
2277
+ I
2278
+ 0
2279
+ I
2280
+ 0
2281
+ I
2282
+ -2
2283
+ p
2284
+ 6
2285
+ M
2286
+ 1
2287
+ p
2288
+ 2
2289
+ x
2290
+ 9
2291
+ for_block
2292
+ t
2293
+ n
2294
+ x
2295
+ 3
2296
+ Alf
2297
+ i
2298
+ 6
2299
+ 45
2300
+ 0
2301
+ 1
2302
+ 43
2303
+ 2
2304
+ 11
2305
+ I
2306
+ 2
2307
+ I
2308
+ 0
2309
+ I
2310
+ 0
2311
+ I
2312
+ 0
2313
+ I
2314
+ -2
2315
+ p
2316
+ 3
2317
+ x
2318
+ 8
2319
+ Relation
2320
+ n
2321
+ x
2322
+ 3
2323
+ DEE
2324
+ p
2325
+ 3
2326
+ I
2327
+ 0
2328
+ I
2329
+ 41
2330
+ I
2331
+ 6
2332
+ x
2333
+ 56
2334
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2335
+ p
2336
+ 0
2337
+ x
2338
+ 7
2339
+ subject
2340
+ s
2341
+ 7
2342
+ A value
2343
+ x
2344
+ 21
2345
+ it_should_behave_like
2346
+ M
2347
+ 1
2348
+ p
2349
+ 2
2350
+ x
2351
+ 9
2352
+ for_block
2353
+ t
2354
+ n
2355
+ x
2356
+ 3
2357
+ Alf
2358
+ i
2359
+ 44
2360
+ 5
2361
+ 48
2362
+ 0
2363
+ 49
2364
+ 1
2365
+ 0
2366
+ 49
2367
+ 2
2368
+ 0
2369
+ 79
2370
+ 83
2371
+ 3
2372
+ 15
2373
+ 5
2374
+ 48
2375
+ 0
2376
+ 49
2377
+ 4
2378
+ 0
2379
+ 49
2380
+ 2
2381
+ 0
2382
+ 44
2383
+ 43
2384
+ 5
2385
+ 78
2386
+ 49
2387
+ 6
2388
+ 1
2389
+ 35
2390
+ 1
2391
+ 83
2392
+ 3
2393
+ 15
2394
+ 5
2395
+ 48
2396
+ 0
2397
+ 5
2398
+ 48
2399
+ 7
2400
+ 49
2401
+ 8
2402
+ 1
2403
+ 11
2404
+ I
2405
+ 4
2406
+ I
2407
+ 0
2408
+ I
2409
+ 0
2410
+ I
2411
+ 0
2412
+ I
2413
+ -2
2414
+ p
2415
+ 9
2416
+ x
2417
+ 7
2418
+ subject
2419
+ x
2420
+ 11
2421
+ cardinality
2422
+ x
2423
+ 6
2424
+ should
2425
+ x
2426
+ 2
2427
+ ==
2428
+ x
2429
+ 4
2430
+ to_a
2431
+ x
2432
+ 4
2433
+ Hash
2434
+ x
2435
+ 16
2436
+ new_from_literal
2437
+ x
2438
+ 8
2439
+ be_empty
2440
+ x
2441
+ 10
2442
+ should_not
2443
+ p
2444
+ 7
2445
+ I
2446
+ 0
2447
+ I
2448
+ 44
2449
+ I
2450
+ d
2451
+ I
2452
+ 45
2453
+ I
2454
+ 22
2455
+ I
2456
+ 46
2457
+ I
2458
+ 2c
2459
+ x
2460
+ 56
2461
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2462
+ p
2463
+ 0
2464
+ x
2465
+ 7
2466
+ specify
2467
+ p
2468
+ 7
2469
+ I
2470
+ 0
2471
+ I
2472
+ 41
2473
+ I
2474
+ 8
2475
+ I
2476
+ 42
2477
+ I
2478
+ 11
2479
+ I
2480
+ 43
2481
+ I
2482
+ 19
2483
+ x
2484
+ 56
2485
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2486
+ p
2487
+ 0
2488
+ p
2489
+ 29
2490
+ I
2491
+ 0
2492
+ I
2493
+ 5
2494
+ I
2495
+ a
2496
+ I
2497
+ a
2498
+ I
2499
+ 14
2500
+ I
2501
+ c
2502
+ I
2503
+ 1e
2504
+ I
2505
+ d
2506
+ I
2507
+ 28
2508
+ I
2509
+ e
2510
+ I
2511
+ 32
2512
+ I
2513
+ 10
2514
+ I
2515
+ 3d
2516
+ I
2517
+ 14
2518
+ I
2519
+ 48
2520
+ I
2521
+ 19
2522
+ I
2523
+ 53
2524
+ I
2525
+ 1f
2526
+ I
2527
+ 5e
2528
+ I
2529
+ 28
2530
+ I
2531
+ 69
2532
+ I
2533
+ 2c
2534
+ I
2535
+ 74
2536
+ I
2537
+ 31
2538
+ I
2539
+ 7f
2540
+ I
2541
+ 36
2542
+ I
2543
+ 8a
2544
+ I
2545
+ 40
2546
+ I
2547
+ 95
2548
+ x
2549
+ 56
2550
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2551
+ p
2552
+ 0
2553
+ x
2554
+ 8
2555
+ describe
2556
+ p
2557
+ 3
2558
+ I
2559
+ 2
2560
+ I
2561
+ 3
2562
+ I
2563
+ d
2564
+ x
2565
+ 56
2566
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2567
+ p
2568
+ 0
2569
+ x
2570
+ 13
2571
+ attach_method
2572
+ p
2573
+ 5
2574
+ I
2575
+ 0
2576
+ I
2577
+ 1
2578
+ I
2579
+ 9
2580
+ I
2581
+ 2
2582
+ I
2583
+ 25
2584
+ x
2585
+ 56
2586
+ /home/blambeau/work/devel/alf/spec/unit/test_relation.rb
2587
+ p
2588
+ 0