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