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
data/lib/alf.rbc ADDED
@@ -0,0 +1,3884 @@
1
+ !RBIX
2
+ 11817445442317083511
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 109
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
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 5
50
+ 7
51
+ 5
52
+ 64
53
+ 47
54
+ 49
55
+ 1
56
+ 1
57
+ 15
58
+ 5
59
+ 7
60
+ 6
61
+ 64
62
+ 47
63
+ 49
64
+ 1
65
+ 1
66
+ 15
67
+ 5
68
+ 7
69
+ 7
70
+ 64
71
+ 47
72
+ 49
73
+ 1
74
+ 1
75
+ 15
76
+ 5
77
+ 7
78
+ 8
79
+ 64
80
+ 47
81
+ 49
82
+ 1
83
+ 1
84
+ 15
85
+ 99
86
+ 7
87
+ 9
88
+ 65
89
+ 49
90
+ 10
91
+ 2
92
+ 13
93
+ 99
94
+ 12
95
+ 7
96
+ 11
97
+ 12
98
+ 7
99
+ 12
100
+ 12
101
+ 65
102
+ 12
103
+ 49
104
+ 13
105
+ 4
106
+ 15
107
+ 49
108
+ 11
109
+ 0
110
+ 15
111
+ 5
112
+ 7
113
+ 14
114
+ 64
115
+ 47
116
+ 49
117
+ 1
118
+ 1
119
+ 15
120
+ 2
121
+ 11
122
+ I
123
+ 6
124
+ I
125
+ 0
126
+ I
127
+ 0
128
+ I
129
+ 0
130
+ n
131
+ p
132
+ 15
133
+ s
134
+ 11
135
+ alf/version
136
+ x
137
+ 7
138
+ require
139
+ s
140
+ 10
141
+ alf/loader
142
+ s
143
+ 10
144
+ alf/errors
145
+ s
146
+ 10
147
+ enumerator
148
+ s
149
+ 8
150
+ stringio
151
+ s
152
+ 3
153
+ set
154
+ s
155
+ 22
156
+ myrrha/to_ruby_literal
157
+ s
158
+ 13
159
+ myrrha/coerce
160
+ x
161
+ 3
162
+ Alf
163
+ x
164
+ 11
165
+ open_module
166
+ x
167
+ 15
168
+ __module_init__
169
+ M
170
+ 1
171
+ n
172
+ n
173
+ x
174
+ 3
175
+ Alf
176
+ i
177
+ 331
178
+ 5
179
+ 66
180
+ 99
181
+ 7
182
+ 0
183
+ 65
184
+ 49
185
+ 1
186
+ 2
187
+ 13
188
+ 99
189
+ 12
190
+ 7
191
+ 2
192
+ 12
193
+ 7
194
+ 3
195
+ 12
196
+ 65
197
+ 12
198
+ 49
199
+ 4
200
+ 4
201
+ 15
202
+ 49
203
+ 2
204
+ 0
205
+ 15
206
+ 99
207
+ 7
208
+ 5
209
+ 65
210
+ 49
211
+ 1
212
+ 2
213
+ 13
214
+ 99
215
+ 12
216
+ 7
217
+ 2
218
+ 12
219
+ 7
220
+ 6
221
+ 12
222
+ 65
223
+ 12
224
+ 49
225
+ 4
226
+ 4
227
+ 15
228
+ 49
229
+ 2
230
+ 0
231
+ 15
232
+ 99
233
+ 7
234
+ 7
235
+ 1
236
+ 65
237
+ 49
238
+ 8
239
+ 3
240
+ 13
241
+ 99
242
+ 12
243
+ 7
244
+ 9
245
+ 12
246
+ 7
247
+ 10
248
+ 12
249
+ 65
250
+ 12
251
+ 49
252
+ 4
253
+ 4
254
+ 15
255
+ 49
256
+ 9
257
+ 0
258
+ 15
259
+ 99
260
+ 7
261
+ 11
262
+ 65
263
+ 49
264
+ 1
265
+ 2
266
+ 13
267
+ 99
268
+ 12
269
+ 7
270
+ 2
271
+ 12
272
+ 7
273
+ 12
274
+ 12
275
+ 65
276
+ 12
277
+ 49
278
+ 4
279
+ 4
280
+ 15
281
+ 49
282
+ 2
283
+ 0
284
+ 15
285
+ 99
286
+ 7
287
+ 13
288
+ 1
289
+ 65
290
+ 49
291
+ 8
292
+ 3
293
+ 13
294
+ 99
295
+ 12
296
+ 7
297
+ 9
298
+ 12
299
+ 7
300
+ 14
301
+ 12
302
+ 65
303
+ 12
304
+ 49
305
+ 4
306
+ 4
307
+ 15
308
+ 49
309
+ 9
310
+ 0
311
+ 15
312
+ 99
313
+ 7
314
+ 15
315
+ 1
316
+ 65
317
+ 49
318
+ 8
319
+ 3
320
+ 13
321
+ 99
322
+ 12
323
+ 7
324
+ 9
325
+ 12
326
+ 7
327
+ 16
328
+ 12
329
+ 65
330
+ 12
331
+ 49
332
+ 4
333
+ 4
334
+ 15
335
+ 49
336
+ 9
337
+ 0
338
+ 15
339
+ 99
340
+ 7
341
+ 17
342
+ 65
343
+ 49
344
+ 1
345
+ 2
346
+ 13
347
+ 99
348
+ 12
349
+ 7
350
+ 2
351
+ 12
352
+ 7
353
+ 18
354
+ 12
355
+ 65
356
+ 12
357
+ 49
358
+ 4
359
+ 4
360
+ 15
361
+ 49
362
+ 2
363
+ 0
364
+ 15
365
+ 99
366
+ 7
367
+ 19
368
+ 65
369
+ 49
370
+ 1
371
+ 2
372
+ 13
373
+ 99
374
+ 12
375
+ 7
376
+ 2
377
+ 12
378
+ 7
379
+ 20
380
+ 12
381
+ 65
382
+ 12
383
+ 49
384
+ 4
385
+ 4
386
+ 15
387
+ 49
388
+ 2
389
+ 0
390
+ 15
391
+ 99
392
+ 7
393
+ 21
394
+ 1
395
+ 65
396
+ 49
397
+ 8
398
+ 3
399
+ 13
400
+ 99
401
+ 12
402
+ 7
403
+ 9
404
+ 12
405
+ 7
406
+ 22
407
+ 12
408
+ 65
409
+ 12
410
+ 49
411
+ 4
412
+ 4
413
+ 15
414
+ 49
415
+ 9
416
+ 0
417
+ 15
418
+ 99
419
+ 7
420
+ 23
421
+ 1
422
+ 65
423
+ 49
424
+ 8
425
+ 3
426
+ 13
427
+ 99
428
+ 12
429
+ 7
430
+ 9
431
+ 12
432
+ 7
433
+ 24
434
+ 12
435
+ 65
436
+ 12
437
+ 49
438
+ 4
439
+ 4
440
+ 15
441
+ 49
442
+ 9
443
+ 0
444
+ 15
445
+ 99
446
+ 7
447
+ 25
448
+ 1
449
+ 65
450
+ 49
451
+ 8
452
+ 3
453
+ 13
454
+ 99
455
+ 12
456
+ 7
457
+ 9
458
+ 12
459
+ 7
460
+ 26
461
+ 12
462
+ 65
463
+ 12
464
+ 49
465
+ 4
466
+ 4
467
+ 15
468
+ 49
469
+ 9
470
+ 0
471
+ 15
472
+ 99
473
+ 7
474
+ 27
475
+ 65
476
+ 49
477
+ 1
478
+ 2
479
+ 13
480
+ 99
481
+ 12
482
+ 7
483
+ 2
484
+ 12
485
+ 7
486
+ 28
487
+ 12
488
+ 65
489
+ 12
490
+ 49
491
+ 4
492
+ 4
493
+ 15
494
+ 49
495
+ 2
496
+ 0
497
+ 15
498
+ 99
499
+ 7
500
+ 29
501
+ 7
502
+ 30
503
+ 65
504
+ 5
505
+ 49
506
+ 4
507
+ 4
508
+ 11
509
+ I
510
+ 6
511
+ I
512
+ 0
513
+ I
514
+ 0
515
+ I
516
+ 0
517
+ n
518
+ p
519
+ 31
520
+ x
521
+ 5
522
+ Types
523
+ x
524
+ 11
525
+ open_module
526
+ x
527
+ 15
528
+ __module_init__
529
+ M
530
+ 1
531
+ n
532
+ n
533
+ x
534
+ 5
535
+ Types
536
+ i
537
+ 101
538
+ 5
539
+ 66
540
+ 5
541
+ 7
542
+ 0
543
+ 64
544
+ 47
545
+ 49
546
+ 1
547
+ 1
548
+ 15
549
+ 5
550
+ 7
551
+ 2
552
+ 64
553
+ 47
554
+ 49
555
+ 1
556
+ 1
557
+ 15
558
+ 5
559
+ 7
560
+ 3
561
+ 64
562
+ 47
563
+ 49
564
+ 1
565
+ 1
566
+ 15
567
+ 5
568
+ 7
569
+ 4
570
+ 64
571
+ 47
572
+ 49
573
+ 1
574
+ 1
575
+ 15
576
+ 5
577
+ 7
578
+ 5
579
+ 64
580
+ 47
581
+ 49
582
+ 1
583
+ 1
584
+ 15
585
+ 5
586
+ 7
587
+ 6
588
+ 64
589
+ 47
590
+ 49
591
+ 1
592
+ 1
593
+ 15
594
+ 5
595
+ 7
596
+ 7
597
+ 64
598
+ 47
599
+ 49
600
+ 1
601
+ 1
602
+ 15
603
+ 5
604
+ 7
605
+ 8
606
+ 64
607
+ 47
608
+ 49
609
+ 1
610
+ 1
611
+ 15
612
+ 5
613
+ 7
614
+ 9
615
+ 64
616
+ 47
617
+ 49
618
+ 1
619
+ 1
620
+ 15
621
+ 5
622
+ 7
623
+ 10
624
+ 64
625
+ 47
626
+ 49
627
+ 1
628
+ 1
629
+ 15
630
+ 5
631
+ 48
632
+ 11
633
+ 56
634
+ 12
635
+ 50
636
+ 13
637
+ 0
638
+ 11
639
+ I
640
+ 2
641
+ I
642
+ 0
643
+ I
644
+ 0
645
+ I
646
+ 0
647
+ n
648
+ p
649
+ 14
650
+ s
651
+ 19
652
+ alf/types/attr_name
653
+ x
654
+ 7
655
+ require
656
+ s
657
+ 17
658
+ alf/types/boolean
659
+ s
660
+ 17
661
+ alf/types/heading
662
+ s
663
+ 18
664
+ alf/types/ordering
665
+ s
666
+ 19
667
+ alf/types/attr_list
668
+ s
669
+ 18
670
+ alf/types/renaming
671
+ s
672
+ 26
673
+ alf/types/tuple_expression
674
+ s
675
+ 25
676
+ alf/types/tuple_predicate
677
+ s
678
+ 23
679
+ alf/types/summarization
680
+ s
681
+ 27
682
+ alf/types/tuple_computation
683
+ x
684
+ 9
685
+ constants
686
+ M
687
+ 1
688
+ p
689
+ 2
690
+ x
691
+ 9
692
+ for_block
693
+ t
694
+ n
695
+ x
696
+ 5
697
+ Types
698
+ i
699
+ 20
700
+ 57
701
+ 19
702
+ 0
703
+ 15
704
+ 45
705
+ 0
706
+ 1
707
+ 20
708
+ 0
709
+ 5
710
+ 20
711
+ 0
712
+ 47
713
+ 49
714
+ 2
715
+ 1
716
+ 49
717
+ 3
718
+ 2
719
+ 11
720
+ I
721
+ 6
722
+ I
723
+ 1
724
+ I
725
+ 1
726
+ I
727
+ 1
728
+ n
729
+ p
730
+ 4
731
+ x
732
+ 3
733
+ Alf
734
+ n
735
+ x
736
+ 9
737
+ const_get
738
+ x
739
+ 9
740
+ const_set
741
+ p
742
+ 5
743
+ I
744
+ 0
745
+ I
746
+ 21
747
+ I
748
+ 4
749
+ I
750
+ 22
751
+ I
752
+ 14
753
+ x
754
+ 40
755
+ /home/blambeau/work/devel/alf/lib/alf.rb
756
+ p
757
+ 1
758
+ x
759
+ 1
760
+ s
761
+ x
762
+ 4
763
+ each
764
+ p
765
+ 23
766
+ I
767
+ 2
768
+ I
769
+ 15
770
+ I
771
+ b
772
+ I
773
+ 16
774
+ I
775
+ 14
776
+ I
777
+ 17
778
+ I
779
+ 1d
780
+ I
781
+ 18
782
+ I
783
+ 26
784
+ I
785
+ 19
786
+ I
787
+ 2f
788
+ I
789
+ 1a
790
+ I
791
+ 38
792
+ I
793
+ 1b
794
+ I
795
+ 41
796
+ I
797
+ 1c
798
+ I
799
+ 4a
800
+ I
801
+ 1d
802
+ I
803
+ 53
804
+ I
805
+ 1e
806
+ I
807
+ 5c
808
+ I
809
+ 21
810
+ I
811
+ 65
812
+ x
813
+ 40
814
+ /home/blambeau/work/devel/alf/lib/alf.rb
815
+ p
816
+ 0
817
+ x
818
+ 13
819
+ attach_method
820
+ x
821
+ 5
822
+ Tools
823
+ M
824
+ 1
825
+ n
826
+ n
827
+ x
828
+ 5
829
+ Tools
830
+ i
831
+ 56
832
+ 5
833
+ 66
834
+ 5
835
+ 7
836
+ 0
837
+ 64
838
+ 47
839
+ 49
840
+ 1
841
+ 1
842
+ 15
843
+ 5
844
+ 7
845
+ 2
846
+ 64
847
+ 47
848
+ 49
849
+ 1
850
+ 1
851
+ 15
852
+ 5
853
+ 7
854
+ 3
855
+ 64
856
+ 47
857
+ 49
858
+ 1
859
+ 1
860
+ 15
861
+ 5
862
+ 7
863
+ 4
864
+ 64
865
+ 47
866
+ 49
867
+ 1
868
+ 1
869
+ 15
870
+ 5
871
+ 7
872
+ 5
873
+ 64
874
+ 47
875
+ 49
876
+ 1
877
+ 1
878
+ 15
879
+ 5
880
+ 45
881
+ 6
882
+ 7
883
+ 47
884
+ 49
885
+ 8
886
+ 1
887
+ 11
888
+ I
889
+ 2
890
+ I
891
+ 0
892
+ I
893
+ 0
894
+ I
895
+ 0
896
+ n
897
+ p
898
+ 9
899
+ s
900
+ 16
901
+ alf/tools/coerce
902
+ x
903
+ 7
904
+ require
905
+ s
906
+ 25
907
+ alf/tools/to_ruby_literal
908
+ s
909
+ 18
910
+ alf/tools/to_lispy
911
+ s
912
+ 22
913
+ alf/tools/tuple_handle
914
+ s
915
+ 23
916
+ alf/tools/miscellaneous
917
+ x
918
+ 5
919
+ Tools
920
+ n
921
+ x
922
+ 6
923
+ extend
924
+ p
925
+ 13
926
+ I
927
+ 2
928
+ I
929
+ 2a
930
+ I
931
+ b
932
+ I
933
+ 2b
934
+ I
935
+ 14
936
+ I
937
+ 2c
938
+ I
939
+ 1d
940
+ I
941
+ 2d
942
+ I
943
+ 26
944
+ I
945
+ 2e
946
+ I
947
+ 2f
948
+ I
949
+ 30
950
+ I
951
+ 38
952
+ x
953
+ 40
954
+ /home/blambeau/work/devel/alf/lib/alf.rb
955
+ p
956
+ 0
957
+ x
958
+ 11
959
+ Environment
960
+ x
961
+ 10
962
+ open_class
963
+ x
964
+ 14
965
+ __class_init__
966
+ M
967
+ 1
968
+ n
969
+ n
970
+ x
971
+ 11
972
+ Environment
973
+ i
974
+ 38
975
+ 5
976
+ 66
977
+ 5
978
+ 7
979
+ 0
980
+ 64
981
+ 47
982
+ 49
983
+ 1
984
+ 1
985
+ 15
986
+ 5
987
+ 7
988
+ 2
989
+ 64
990
+ 47
991
+ 49
992
+ 1
993
+ 1
994
+ 15
995
+ 5
996
+ 7
997
+ 3
998
+ 64
999
+ 47
1000
+ 49
1001
+ 1
1002
+ 1
1003
+ 15
1004
+ 5
1005
+ 7
1006
+ 4
1007
+ 64
1008
+ 47
1009
+ 49
1010
+ 1
1011
+ 1
1012
+ 11
1013
+ I
1014
+ 2
1015
+ I
1016
+ 0
1017
+ I
1018
+ 0
1019
+ I
1020
+ 0
1021
+ n
1022
+ p
1023
+ 5
1024
+ s
1025
+ 29
1026
+ alf/environment/class_methods
1027
+ x
1028
+ 7
1029
+ require
1030
+ s
1031
+ 20
1032
+ alf/environment/base
1033
+ s
1034
+ 24
1035
+ alf/environment/explicit
1036
+ s
1037
+ 22
1038
+ alf/environment/folder
1039
+ p
1040
+ 9
1041
+ I
1042
+ 2
1043
+ I
1044
+ 4e
1045
+ I
1046
+ b
1047
+ I
1048
+ 4f
1049
+ I
1050
+ 14
1051
+ I
1052
+ 50
1053
+ I
1054
+ 1d
1055
+ I
1056
+ 51
1057
+ I
1058
+ 26
1059
+ x
1060
+ 40
1061
+ /home/blambeau/work/devel/alf/lib/alf.rb
1062
+ p
1063
+ 0
1064
+ x
1065
+ 8
1066
+ Iterator
1067
+ M
1068
+ 1
1069
+ n
1070
+ n
1071
+ x
1072
+ 8
1073
+ Iterator
1074
+ i
1075
+ 38
1076
+ 5
1077
+ 66
1078
+ 5
1079
+ 45
1080
+ 0
1081
+ 1
1082
+ 47
1083
+ 49
1084
+ 2
1085
+ 1
1086
+ 15
1087
+ 5
1088
+ 7
1089
+ 3
1090
+ 64
1091
+ 47
1092
+ 49
1093
+ 4
1094
+ 1
1095
+ 15
1096
+ 5
1097
+ 7
1098
+ 5
1099
+ 64
1100
+ 47
1101
+ 49
1102
+ 4
1103
+ 1
1104
+ 15
1105
+ 5
1106
+ 7
1107
+ 6
1108
+ 64
1109
+ 47
1110
+ 49
1111
+ 4
1112
+ 1
1113
+ 11
1114
+ I
1115
+ 2
1116
+ I
1117
+ 0
1118
+ I
1119
+ 0
1120
+ I
1121
+ 0
1122
+ n
1123
+ p
1124
+ 7
1125
+ x
1126
+ 10
1127
+ Enumerable
1128
+ n
1129
+ x
1130
+ 7
1131
+ include
1132
+ s
1133
+ 26
1134
+ alf/iterator/class_methods
1135
+ x
1136
+ 7
1137
+ require
1138
+ s
1139
+ 17
1140
+ alf/iterator/base
1141
+ s
1142
+ 18
1143
+ alf/iterator/proxy
1144
+ p
1145
+ 9
1146
+ I
1147
+ 2
1148
+ I
1149
+ 65
1150
+ I
1151
+ b
1152
+ I
1153
+ 67
1154
+ I
1155
+ 14
1156
+ I
1157
+ 68
1158
+ I
1159
+ 1d
1160
+ I
1161
+ 69
1162
+ I
1163
+ 26
1164
+ x
1165
+ 40
1166
+ /home/blambeau/work/devel/alf/lib/alf.rb
1167
+ p
1168
+ 0
1169
+ x
1170
+ 6
1171
+ Reader
1172
+ M
1173
+ 1
1174
+ n
1175
+ n
1176
+ x
1177
+ 6
1178
+ Reader
1179
+ i
1180
+ 47
1181
+ 5
1182
+ 66
1183
+ 5
1184
+ 45
1185
+ 0
1186
+ 1
1187
+ 47
1188
+ 49
1189
+ 2
1190
+ 1
1191
+ 15
1192
+ 5
1193
+ 7
1194
+ 3
1195
+ 64
1196
+ 47
1197
+ 49
1198
+ 4
1199
+ 1
1200
+ 15
1201
+ 5
1202
+ 7
1203
+ 5
1204
+ 64
1205
+ 47
1206
+ 49
1207
+ 4
1208
+ 1
1209
+ 15
1210
+ 5
1211
+ 7
1212
+ 6
1213
+ 64
1214
+ 47
1215
+ 49
1216
+ 4
1217
+ 1
1218
+ 15
1219
+ 5
1220
+ 7
1221
+ 7
1222
+ 64
1223
+ 47
1224
+ 49
1225
+ 4
1226
+ 1
1227
+ 11
1228
+ I
1229
+ 2
1230
+ I
1231
+ 0
1232
+ I
1233
+ 0
1234
+ I
1235
+ 0
1236
+ n
1237
+ p
1238
+ 8
1239
+ x
1240
+ 8
1241
+ Iterator
1242
+ n
1243
+ x
1244
+ 7
1245
+ include
1246
+ s
1247
+ 24
1248
+ alf/reader/class_methods
1249
+ x
1250
+ 7
1251
+ require
1252
+ s
1253
+ 15
1254
+ alf/reader/base
1255
+ s
1256
+ 15
1257
+ alf/reader/rash
1258
+ s
1259
+ 19
1260
+ alf/reader/alf_file
1261
+ p
1262
+ 11
1263
+ I
1264
+ 2
1265
+ I
1266
+ 88
1267
+ I
1268
+ b
1269
+ I
1270
+ 8a
1271
+ I
1272
+ 14
1273
+ I
1274
+ 8b
1275
+ I
1276
+ 1d
1277
+ I
1278
+ 8c
1279
+ I
1280
+ 26
1281
+ I
1282
+ 8d
1283
+ I
1284
+ 2f
1285
+ x
1286
+ 40
1287
+ /home/blambeau/work/devel/alf/lib/alf.rb
1288
+ p
1289
+ 0
1290
+ x
1291
+ 8
1292
+ Renderer
1293
+ M
1294
+ 1
1295
+ n
1296
+ n
1297
+ x
1298
+ 8
1299
+ Renderer
1300
+ i
1301
+ 38
1302
+ 5
1303
+ 66
1304
+ 5
1305
+ 7
1306
+ 0
1307
+ 64
1308
+ 47
1309
+ 49
1310
+ 1
1311
+ 1
1312
+ 15
1313
+ 5
1314
+ 7
1315
+ 2
1316
+ 64
1317
+ 47
1318
+ 49
1319
+ 1
1320
+ 1
1321
+ 15
1322
+ 5
1323
+ 7
1324
+ 3
1325
+ 64
1326
+ 47
1327
+ 49
1328
+ 1
1329
+ 1
1330
+ 15
1331
+ 5
1332
+ 7
1333
+ 4
1334
+ 64
1335
+ 47
1336
+ 49
1337
+ 1
1338
+ 1
1339
+ 11
1340
+ I
1341
+ 2
1342
+ I
1343
+ 0
1344
+ I
1345
+ 0
1346
+ I
1347
+ 0
1348
+ n
1349
+ p
1350
+ 5
1351
+ s
1352
+ 26
1353
+ alf/renderer/class_methods
1354
+ x
1355
+ 7
1356
+ require
1357
+ s
1358
+ 17
1359
+ alf/renderer/base
1360
+ s
1361
+ 17
1362
+ alf/renderer/rash
1363
+ s
1364
+ 17
1365
+ alf/renderer/text
1366
+ p
1367
+ 9
1368
+ I
1369
+ 2
1370
+ I
1371
+ a8
1372
+ I
1373
+ b
1374
+ I
1375
+ a9
1376
+ I
1377
+ 14
1378
+ I
1379
+ aa
1380
+ I
1381
+ 1d
1382
+ I
1383
+ ab
1384
+ I
1385
+ 26
1386
+ x
1387
+ 40
1388
+ /home/blambeau/work/devel/alf/lib/alf.rb
1389
+ p
1390
+ 0
1391
+ x
1392
+ 7
1393
+ Command
1394
+ M
1395
+ 1
1396
+ n
1397
+ n
1398
+ x
1399
+ 7
1400
+ Command
1401
+ i
1402
+ 113
1403
+ 5
1404
+ 66
1405
+ 5
1406
+ 7
1407
+ 0
1408
+ 64
1409
+ 47
1410
+ 49
1411
+ 1
1412
+ 1
1413
+ 15
1414
+ 5
1415
+ 7
1416
+ 2
1417
+ 64
1418
+ 47
1419
+ 49
1420
+ 1
1421
+ 1
1422
+ 15
1423
+ 65
1424
+ 7
1425
+ 3
1426
+ 45
1427
+ 4
1428
+ 5
1429
+ 13
1430
+ 71
1431
+ 6
1432
+ 47
1433
+ 9
1434
+ 44
1435
+ 47
1436
+ 49
1437
+ 7
1438
+ 0
1439
+ 13
1440
+ 47
1441
+ 49
1442
+ 8
1443
+ 0
1444
+ 15
1445
+ 8
1446
+ 47
1447
+ 49
1448
+ 6
1449
+ 0
1450
+ 49
1451
+ 9
1452
+ 2
1453
+ 15
1454
+ 99
1455
+ 7
1456
+ 10
1457
+ 7
1458
+ 11
1459
+ 65
1460
+ 45
1461
+ 12
1462
+ 13
1463
+ 49
1464
+ 14
1465
+ 4
1466
+ 15
1467
+ 99
1468
+ 7
1469
+ 15
1470
+ 7
1471
+ 16
1472
+ 65
1473
+ 45
1474
+ 12
1475
+ 17
1476
+ 49
1477
+ 14
1478
+ 4
1479
+ 15
1480
+ 5
1481
+ 7
1482
+ 18
1483
+ 64
1484
+ 47
1485
+ 49
1486
+ 1
1487
+ 1
1488
+ 15
1489
+ 5
1490
+ 7
1491
+ 19
1492
+ 64
1493
+ 47
1494
+ 49
1495
+ 1
1496
+ 1
1497
+ 15
1498
+ 5
1499
+ 7
1500
+ 20
1501
+ 64
1502
+ 47
1503
+ 49
1504
+ 1
1505
+ 1
1506
+ 15
1507
+ 5
1508
+ 7
1509
+ 21
1510
+ 64
1511
+ 47
1512
+ 49
1513
+ 1
1514
+ 1
1515
+ 11
1516
+ I
1517
+ 5
1518
+ I
1519
+ 0
1520
+ I
1521
+ 0
1522
+ I
1523
+ 0
1524
+ n
1525
+ p
1526
+ 22
1527
+ s
1528
+ 25
1529
+ alf/command/class_methods
1530
+ x
1531
+ 7
1532
+ require
1533
+ s
1534
+ 23
1535
+ alf/command/doc_manager
1536
+ x
1537
+ 13
1538
+ DOC_EXTRACTOR
1539
+ x
1540
+ 10
1541
+ DocManager
1542
+ n
1543
+ x
1544
+ 3
1545
+ new
1546
+ x
1547
+ 8
1548
+ allocate
1549
+ x
1550
+ 10
1551
+ initialize
1552
+ x
1553
+ 9
1554
+ const_set
1555
+ x
1556
+ 9
1557
+ Delegator
1558
+ M
1559
+ 1
1560
+ n
1561
+ n
1562
+ x
1563
+ 9
1564
+ Delegator
1565
+ i
1566
+ 9
1567
+ 45
1568
+ 0
1569
+ 1
1570
+ 56
1571
+ 2
1572
+ 50
1573
+ 3
1574
+ 0
1575
+ 11
1576
+ I
1577
+ 2
1578
+ I
1579
+ 0
1580
+ I
1581
+ 0
1582
+ I
1583
+ 0
1584
+ n
1585
+ p
1586
+ 4
1587
+ x
1588
+ 6
1589
+ Quickl
1590
+ n
1591
+ M
1592
+ 1
1593
+ p
1594
+ 2
1595
+ x
1596
+ 9
1597
+ for_block
1598
+ t
1599
+ n
1600
+ x
1601
+ 9
1602
+ Delegator
1603
+ i
1604
+ 28
1605
+ 57
1606
+ 19
1607
+ 0
1608
+ 15
1609
+ 20
1610
+ 0
1611
+ 45
1612
+ 0
1613
+ 1
1614
+ 13
1615
+ 18
1616
+ 2
1617
+ 49
1618
+ 2
1619
+ 1
1620
+ 15
1621
+ 15
1622
+ 94
1623
+ 9
1624
+ 26
1625
+ 20
1626
+ 0
1627
+ 60
1628
+ 1
1629
+ 8
1630
+ 27
1631
+ 1
1632
+ 11
1633
+ I
1634
+ 5
1635
+ I
1636
+ 1
1637
+ I
1638
+ 1
1639
+ I
1640
+ 1
1641
+ n
1642
+ p
1643
+ 3
1644
+ x
1645
+ 13
1646
+ DOC_EXTRACTOR
1647
+ n
1648
+ x
1649
+ 14
1650
+ doc_extractor=
1651
+ p
1652
+ 9
1653
+ I
1654
+ 0
1655
+ I
1656
+ be
1657
+ I
1658
+ 4
1659
+ I
1660
+ bf
1661
+ I
1662
+ 11
1663
+ I
1664
+ c0
1665
+ I
1666
+ 1b
1667
+ I
1668
+ 0
1669
+ I
1670
+ 1c
1671
+ x
1672
+ 40
1673
+ /home/blambeau/work/devel/alf/lib/alf.rb
1674
+ p
1675
+ 1
1676
+ x
1677
+ 7
1678
+ builder
1679
+ x
1680
+ 9
1681
+ Delegator
1682
+ p
1683
+ 5
1684
+ I
1685
+ -1
1686
+ I
1687
+ bd
1688
+ I
1689
+ 0
1690
+ I
1691
+ be
1692
+ I
1693
+ 9
1694
+ x
1695
+ 40
1696
+ /home/blambeau/work/devel/alf/lib/alf.rb
1697
+ p
1698
+ 0
1699
+ x
1700
+ 3
1701
+ Alf
1702
+ n
1703
+ x
1704
+ 13
1705
+ attach_method
1706
+ x
1707
+ 7
1708
+ Command
1709
+ M
1710
+ 1
1711
+ n
1712
+ n
1713
+ x
1714
+ 7
1715
+ Command
1716
+ i
1717
+ 9
1718
+ 45
1719
+ 0
1720
+ 1
1721
+ 56
1722
+ 2
1723
+ 50
1724
+ 3
1725
+ 0
1726
+ 11
1727
+ I
1728
+ 2
1729
+ I
1730
+ 0
1731
+ I
1732
+ 0
1733
+ I
1734
+ 0
1735
+ n
1736
+ p
1737
+ 4
1738
+ x
1739
+ 6
1740
+ Quickl
1741
+ n
1742
+ M
1743
+ 1
1744
+ p
1745
+ 2
1746
+ x
1747
+ 9
1748
+ for_block
1749
+ t
1750
+ n
1751
+ x
1752
+ 7
1753
+ Command
1754
+ i
1755
+ 45
1756
+ 57
1757
+ 19
1758
+ 0
1759
+ 15
1760
+ 20
1761
+ 0
1762
+ 45
1763
+ 0
1764
+ 1
1765
+ 43
1766
+ 2
1767
+ 43
1768
+ 3
1769
+ 13
1770
+ 18
1771
+ 2
1772
+ 49
1773
+ 4
1774
+ 1
1775
+ 15
1776
+ 15
1777
+ 20
1778
+ 0
1779
+ 45
1780
+ 5
1781
+ 6
1782
+ 13
1783
+ 18
1784
+ 2
1785
+ 49
1786
+ 7
1787
+ 1
1788
+ 15
1789
+ 15
1790
+ 94
1791
+ 9
1792
+ 43
1793
+ 20
1794
+ 0
1795
+ 60
1796
+ 1
1797
+ 8
1798
+ 44
1799
+ 1
1800
+ 11
1801
+ I
1802
+ 5
1803
+ I
1804
+ 1
1805
+ I
1806
+ 1
1807
+ I
1808
+ 1
1809
+ n
1810
+ p
1811
+ 8
1812
+ x
1813
+ 3
1814
+ Alf
1815
+ n
1816
+ x
1817
+ 7
1818
+ Command
1819
+ x
1820
+ 4
1821
+ Main
1822
+ x
1823
+ 15
1824
+ command_parent=
1825
+ x
1826
+ 13
1827
+ DOC_EXTRACTOR
1828
+ n
1829
+ x
1830
+ 14
1831
+ doc_extractor=
1832
+ p
1833
+ 11
1834
+ I
1835
+ 0
1836
+ I
1837
+ c8
1838
+ I
1839
+ 4
1840
+ I
1841
+ c9
1842
+ I
1843
+ 15
1844
+ I
1845
+ ca
1846
+ I
1847
+ 22
1848
+ I
1849
+ cb
1850
+ I
1851
+ 2c
1852
+ I
1853
+ 0
1854
+ I
1855
+ 2d
1856
+ x
1857
+ 40
1858
+ /home/blambeau/work/devel/alf/lib/alf.rb
1859
+ p
1860
+ 1
1861
+ x
1862
+ 7
1863
+ builder
1864
+ x
1865
+ 7
1866
+ Command
1867
+ p
1868
+ 5
1869
+ I
1870
+ -1
1871
+ I
1872
+ c7
1873
+ I
1874
+ 0
1875
+ I
1876
+ c8
1877
+ I
1878
+ 9
1879
+ x
1880
+ 40
1881
+ /home/blambeau/work/devel/alf/lib/alf.rb
1882
+ p
1883
+ 0
1884
+ n
1885
+ s
1886
+ 16
1887
+ alf/command/main
1888
+ s
1889
+ 16
1890
+ alf/command/exec
1891
+ s
1892
+ 16
1893
+ alf/command/help
1894
+ s
1895
+ 16
1896
+ alf/command/show
1897
+ p
1898
+ 19
1899
+ I
1900
+ 2
1901
+ I
1902
+ b4
1903
+ I
1904
+ b
1905
+ I
1906
+ b5
1907
+ I
1908
+ 14
1909
+ I
1910
+ b8
1911
+ I
1912
+ 33
1913
+ I
1914
+ bd
1915
+ I
1916
+ 40
1917
+ I
1918
+ c7
1919
+ I
1920
+ 4d
1921
+ I
1922
+ cf
1923
+ I
1924
+ 56
1925
+ I
1926
+ d0
1927
+ I
1928
+ 5f
1929
+ I
1930
+ d1
1931
+ I
1932
+ 68
1933
+ I
1934
+ d2
1935
+ I
1936
+ 71
1937
+ x
1938
+ 40
1939
+ /home/blambeau/work/devel/alf/lib/alf.rb
1940
+ p
1941
+ 0
1942
+ x
1943
+ 8
1944
+ Operator
1945
+ M
1946
+ 1
1947
+ n
1948
+ n
1949
+ x
1950
+ 8
1951
+ Operator
1952
+ i
1953
+ 169
1954
+ 5
1955
+ 66
1956
+ 5
1957
+ 45
1958
+ 0
1959
+ 1
1960
+ 45
1961
+ 2
1962
+ 3
1963
+ 47
1964
+ 49
1965
+ 4
1966
+ 2
1967
+ 15
1968
+ 99
1969
+ 7
1970
+ 5
1971
+ 7
1972
+ 6
1973
+ 65
1974
+ 45
1975
+ 7
1976
+ 8
1977
+ 49
1978
+ 9
1979
+ 4
1980
+ 15
1981
+ 5
1982
+ 7
1983
+ 10
1984
+ 64
1985
+ 47
1986
+ 49
1987
+ 11
1988
+ 1
1989
+ 15
1990
+ 5
1991
+ 7
1992
+ 12
1993
+ 64
1994
+ 47
1995
+ 49
1996
+ 11
1997
+ 1
1998
+ 15
1999
+ 5
2000
+ 7
2001
+ 13
2002
+ 64
2003
+ 47
2004
+ 49
2005
+ 11
2006
+ 1
2007
+ 15
2008
+ 5
2009
+ 7
2010
+ 14
2011
+ 64
2012
+ 47
2013
+ 49
2014
+ 11
2015
+ 1
2016
+ 15
2017
+ 5
2018
+ 7
2019
+ 15
2020
+ 64
2021
+ 47
2022
+ 49
2023
+ 11
2024
+ 1
2025
+ 15
2026
+ 5
2027
+ 7
2028
+ 16
2029
+ 64
2030
+ 47
2031
+ 49
2032
+ 11
2033
+ 1
2034
+ 15
2035
+ 5
2036
+ 7
2037
+ 17
2038
+ 64
2039
+ 47
2040
+ 49
2041
+ 11
2042
+ 1
2043
+ 15
2044
+ 5
2045
+ 7
2046
+ 18
2047
+ 64
2048
+ 47
2049
+ 49
2050
+ 11
2051
+ 1
2052
+ 15
2053
+ 5
2054
+ 7
2055
+ 19
2056
+ 64
2057
+ 47
2058
+ 49
2059
+ 11
2060
+ 1
2061
+ 15
2062
+ 5
2063
+ 7
2064
+ 20
2065
+ 64
2066
+ 47
2067
+ 49
2068
+ 11
2069
+ 1
2070
+ 15
2071
+ 99
2072
+ 7
2073
+ 21
2074
+ 65
2075
+ 49
2076
+ 22
2077
+ 2
2078
+ 13
2079
+ 99
2080
+ 12
2081
+ 7
2082
+ 23
2083
+ 12
2084
+ 7
2085
+ 24
2086
+ 12
2087
+ 65
2088
+ 12
2089
+ 49
2090
+ 9
2091
+ 4
2092
+ 15
2093
+ 49
2094
+ 23
2095
+ 0
2096
+ 15
2097
+ 99
2098
+ 7
2099
+ 25
2100
+ 65
2101
+ 49
2102
+ 22
2103
+ 2
2104
+ 13
2105
+ 99
2106
+ 12
2107
+ 7
2108
+ 23
2109
+ 12
2110
+ 7
2111
+ 26
2112
+ 12
2113
+ 65
2114
+ 12
2115
+ 49
2116
+ 9
2117
+ 4
2118
+ 15
2119
+ 49
2120
+ 23
2121
+ 0
2122
+ 11
2123
+ I
2124
+ 6
2125
+ I
2126
+ 0
2127
+ I
2128
+ 0
2129
+ I
2130
+ 0
2131
+ n
2132
+ p
2133
+ 27
2134
+ x
2135
+ 8
2136
+ Iterator
2137
+ n
2138
+ x
2139
+ 5
2140
+ Tools
2141
+ n
2142
+ x
2143
+ 7
2144
+ include
2145
+ x
2146
+ 8
2147
+ Operator
2148
+ M
2149
+ 1
2150
+ n
2151
+ n
2152
+ x
2153
+ 8
2154
+ Operator
2155
+ i
2156
+ 9
2157
+ 45
2158
+ 0
2159
+ 1
2160
+ 56
2161
+ 2
2162
+ 50
2163
+ 3
2164
+ 0
2165
+ 11
2166
+ I
2167
+ 2
2168
+ I
2169
+ 0
2170
+ I
2171
+ 0
2172
+ I
2173
+ 0
2174
+ n
2175
+ p
2176
+ 4
2177
+ x
2178
+ 3
2179
+ Alf
2180
+ n
2181
+ M
2182
+ 1
2183
+ p
2184
+ 2
2185
+ x
2186
+ 9
2187
+ for_block
2188
+ t
2189
+ n
2190
+ x
2191
+ 8
2192
+ Operator
2193
+ i
2194
+ 15
2195
+ 57
2196
+ 19
2197
+ 0
2198
+ 15
2199
+ 20
2200
+ 0
2201
+ 45
2202
+ 0
2203
+ 1
2204
+ 43
2205
+ 2
2206
+ 49
2207
+ 3
2208
+ 1
2209
+ 11
2210
+ I
2211
+ 4
2212
+ I
2213
+ 1
2214
+ I
2215
+ 1
2216
+ I
2217
+ 1
2218
+ n
2219
+ p
2220
+ 4
2221
+ x
2222
+ 3
2223
+ Alf
2224
+ n
2225
+ x
2226
+ 8
2227
+ Operator
2228
+ x
2229
+ 15
2230
+ instance_module
2231
+ p
2232
+ 5
2233
+ I
2234
+ 0
2235
+ I
2236
+ df
2237
+ I
2238
+ 4
2239
+ I
2240
+ e0
2241
+ I
2242
+ f
2243
+ x
2244
+ 40
2245
+ /home/blambeau/work/devel/alf/lib/alf.rb
2246
+ p
2247
+ 1
2248
+ x
2249
+ 1
2250
+ b
2251
+ x
2252
+ 7
2253
+ Command
2254
+ p
2255
+ 5
2256
+ I
2257
+ -1
2258
+ I
2259
+ de
2260
+ I
2261
+ 0
2262
+ I
2263
+ df
2264
+ I
2265
+ 9
2266
+ x
2267
+ 40
2268
+ /home/blambeau/work/devel/alf/lib/alf.rb
2269
+ p
2270
+ 0
2271
+ x
2272
+ 3
2273
+ Alf
2274
+ n
2275
+ x
2276
+ 13
2277
+ attach_method
2278
+ s
2279
+ 26
2280
+ alf/operator/class_methods
2281
+ x
2282
+ 7
2283
+ require
2284
+ s
2285
+ 22
2286
+ alf/operator/signature
2287
+ s
2288
+ 17
2289
+ alf/operator/base
2290
+ s
2291
+ 20
2292
+ alf/operator/nullary
2293
+ s
2294
+ 18
2295
+ alf/operator/unary
2296
+ s
2297
+ 19
2298
+ alf/operator/binary
2299
+ s
2300
+ 19
2301
+ alf/operator/cesure
2302
+ s
2303
+ 22
2304
+ alf/operator/transform
2305
+ s
2306
+ 21
2307
+ alf/operator/shortcut
2308
+ s
2309
+ 25
2310
+ alf/operator/experimental
2311
+ x
2312
+ 13
2313
+ NonRelational
2314
+ x
2315
+ 11
2316
+ open_module
2317
+ x
2318
+ 15
2319
+ __module_init__
2320
+ M
2321
+ 1
2322
+ n
2323
+ n
2324
+ x
2325
+ 13
2326
+ NonRelational
2327
+ i
2328
+ 76
2329
+ 5
2330
+ 66
2331
+ 5
2332
+ 7
2333
+ 0
2334
+ 64
2335
+ 47
2336
+ 49
2337
+ 1
2338
+ 1
2339
+ 15
2340
+ 5
2341
+ 7
2342
+ 2
2343
+ 64
2344
+ 47
2345
+ 49
2346
+ 1
2347
+ 1
2348
+ 15
2349
+ 5
2350
+ 7
2351
+ 3
2352
+ 64
2353
+ 47
2354
+ 49
2355
+ 1
2356
+ 1
2357
+ 15
2358
+ 5
2359
+ 7
2360
+ 4
2361
+ 64
2362
+ 47
2363
+ 49
2364
+ 1
2365
+ 1
2366
+ 15
2367
+ 5
2368
+ 7
2369
+ 5
2370
+ 64
2371
+ 47
2372
+ 49
2373
+ 1
2374
+ 1
2375
+ 15
2376
+ 5
2377
+ 7
2378
+ 6
2379
+ 64
2380
+ 47
2381
+ 49
2382
+ 1
2383
+ 1
2384
+ 15
2385
+ 5
2386
+ 7
2387
+ 7
2388
+ 64
2389
+ 47
2390
+ 49
2391
+ 1
2392
+ 1
2393
+ 15
2394
+ 99
2395
+ 7
2396
+ 8
2397
+ 7
2398
+ 9
2399
+ 65
2400
+ 5
2401
+ 49
2402
+ 10
2403
+ 4
2404
+ 11
2405
+ I
2406
+ 5
2407
+ I
2408
+ 0
2409
+ I
2410
+ 0
2411
+ I
2412
+ 0
2413
+ n
2414
+ p
2415
+ 11
2416
+ s
2417
+ 35
2418
+ alf/operator/non_relational/autonum
2419
+ x
2420
+ 7
2421
+ require
2422
+ s
2423
+ 36
2424
+ alf/operator/non_relational/defaults
2425
+ s
2426
+ 35
2427
+ alf/operator/non_relational/compact
2428
+ s
2429
+ 32
2430
+ alf/operator/non_relational/sort
2431
+ s
2432
+ 32
2433
+ alf/operator/non_relational/clip
2434
+ s
2435
+ 34
2436
+ alf/operator/non_relational/coerce
2437
+ s
2438
+ 37
2439
+ alf/operator/non_relational/generator
2440
+ x
2441
+ 4
2442
+ each
2443
+ M
2444
+ 1
2445
+ n
2446
+ n
2447
+ x
2448
+ 4
2449
+ each
2450
+ i
2451
+ 9
2452
+ 5
2453
+ 48
2454
+ 0
2455
+ 56
2456
+ 1
2457
+ 50
2458
+ 2
2459
+ 0
2460
+ 11
2461
+ I
2462
+ 2
2463
+ I
2464
+ 0
2465
+ I
2466
+ 0
2467
+ I
2468
+ 0
2469
+ n
2470
+ p
2471
+ 3
2472
+ x
2473
+ 9
2474
+ constants
2475
+ M
2476
+ 1
2477
+ p
2478
+ 2
2479
+ x
2480
+ 9
2481
+ for_block
2482
+ t
2483
+ n
2484
+ x
2485
+ 4
2486
+ each
2487
+ i
2488
+ 37
2489
+ 57
2490
+ 19
2491
+ 0
2492
+ 15
2493
+ 5
2494
+ 20
2495
+ 0
2496
+ 47
2497
+ 49
2498
+ 0
2499
+ 1
2500
+ 19
2501
+ 1
2502
+ 15
2503
+ 20
2504
+ 1
2505
+ 49
2506
+ 1
2507
+ 0
2508
+ 45
2509
+ 2
2510
+ 3
2511
+ 43
2512
+ 4
2513
+ 49
2514
+ 5
2515
+ 1
2516
+ 9
2517
+ 35
2518
+ 20
2519
+ 1
2520
+ 60
2521
+ 1
2522
+ 8
2523
+ 36
2524
+ 1
2525
+ 11
2526
+ I
2527
+ 5
2528
+ I
2529
+ 2
2530
+ I
2531
+ 1
2532
+ I
2533
+ 1
2534
+ n
2535
+ p
2536
+ 6
2537
+ x
2538
+ 9
2539
+ const_get
2540
+ x
2541
+ 9
2542
+ ancestors
2543
+ x
2544
+ 8
2545
+ Operator
2546
+ n
2547
+ x
2548
+ 13
2549
+ NonRelational
2550
+ x
2551
+ 8
2552
+ include?
2553
+ p
2554
+ 9
2555
+ I
2556
+ 0
2557
+ I
2558
+ 100
2559
+ I
2560
+ 4
2561
+ I
2562
+ 101
2563
+ I
2564
+ e
2565
+ I
2566
+ 102
2567
+ I
2568
+ 24
2569
+ I
2570
+ 0
2571
+ I
2572
+ 25
2573
+ x
2574
+ 40
2575
+ /home/blambeau/work/devel/alf/lib/alf.rb
2576
+ p
2577
+ 2
2578
+ x
2579
+ 1
2580
+ c
2581
+ x
2582
+ 3
2583
+ val
2584
+ x
2585
+ 4
2586
+ each
2587
+ p
2588
+ 5
2589
+ I
2590
+ -1
2591
+ I
2592
+ ff
2593
+ I
2594
+ 0
2595
+ I
2596
+ 100
2597
+ I
2598
+ 9
2599
+ x
2600
+ 40
2601
+ /home/blambeau/work/devel/alf/lib/alf.rb
2602
+ p
2603
+ 0
2604
+ x
2605
+ 13
2606
+ attach_method
2607
+ p
2608
+ 17
2609
+ I
2610
+ 2
2611
+ I
2612
+ f4
2613
+ I
2614
+ b
2615
+ I
2616
+ f5
2617
+ I
2618
+ 14
2619
+ I
2620
+ f6
2621
+ I
2622
+ 1d
2623
+ I
2624
+ f7
2625
+ I
2626
+ 26
2627
+ I
2628
+ f8
2629
+ I
2630
+ 2f
2631
+ I
2632
+ f9
2633
+ I
2634
+ 38
2635
+ I
2636
+ fa
2637
+ I
2638
+ 41
2639
+ I
2640
+ ff
2641
+ I
2642
+ 4c
2643
+ x
2644
+ 40
2645
+ /home/blambeau/work/devel/alf/lib/alf.rb
2646
+ p
2647
+ 0
2648
+ x
2649
+ 10
2650
+ Relational
2651
+ M
2652
+ 1
2653
+ n
2654
+ n
2655
+ x
2656
+ 10
2657
+ Relational
2658
+ i
2659
+ 175
2660
+ 5
2661
+ 66
2662
+ 5
2663
+ 7
2664
+ 0
2665
+ 64
2666
+ 47
2667
+ 49
2668
+ 1
2669
+ 1
2670
+ 15
2671
+ 5
2672
+ 7
2673
+ 2
2674
+ 64
2675
+ 47
2676
+ 49
2677
+ 1
2678
+ 1
2679
+ 15
2680
+ 5
2681
+ 7
2682
+ 3
2683
+ 64
2684
+ 47
2685
+ 49
2686
+ 1
2687
+ 1
2688
+ 15
2689
+ 5
2690
+ 7
2691
+ 4
2692
+ 64
2693
+ 47
2694
+ 49
2695
+ 1
2696
+ 1
2697
+ 15
2698
+ 5
2699
+ 7
2700
+ 5
2701
+ 64
2702
+ 47
2703
+ 49
2704
+ 1
2705
+ 1
2706
+ 15
2707
+ 5
2708
+ 7
2709
+ 6
2710
+ 64
2711
+ 47
2712
+ 49
2713
+ 1
2714
+ 1
2715
+ 15
2716
+ 5
2717
+ 7
2718
+ 7
2719
+ 64
2720
+ 47
2721
+ 49
2722
+ 1
2723
+ 1
2724
+ 15
2725
+ 5
2726
+ 7
2727
+ 8
2728
+ 64
2729
+ 47
2730
+ 49
2731
+ 1
2732
+ 1
2733
+ 15
2734
+ 5
2735
+ 7
2736
+ 9
2737
+ 64
2738
+ 47
2739
+ 49
2740
+ 1
2741
+ 1
2742
+ 15
2743
+ 5
2744
+ 7
2745
+ 10
2746
+ 64
2747
+ 47
2748
+ 49
2749
+ 1
2750
+ 1
2751
+ 15
2752
+ 5
2753
+ 7
2754
+ 11
2755
+ 64
2756
+ 47
2757
+ 49
2758
+ 1
2759
+ 1
2760
+ 15
2761
+ 5
2762
+ 7
2763
+ 12
2764
+ 64
2765
+ 47
2766
+ 49
2767
+ 1
2768
+ 1
2769
+ 15
2770
+ 5
2771
+ 7
2772
+ 13
2773
+ 64
2774
+ 47
2775
+ 49
2776
+ 1
2777
+ 1
2778
+ 15
2779
+ 5
2780
+ 7
2781
+ 14
2782
+ 64
2783
+ 47
2784
+ 49
2785
+ 1
2786
+ 1
2787
+ 15
2788
+ 5
2789
+ 7
2790
+ 15
2791
+ 64
2792
+ 47
2793
+ 49
2794
+ 1
2795
+ 1
2796
+ 15
2797
+ 5
2798
+ 7
2799
+ 16
2800
+ 64
2801
+ 47
2802
+ 49
2803
+ 1
2804
+ 1
2805
+ 15
2806
+ 5
2807
+ 7
2808
+ 17
2809
+ 64
2810
+ 47
2811
+ 49
2812
+ 1
2813
+ 1
2814
+ 15
2815
+ 5
2816
+ 7
2817
+ 18
2818
+ 64
2819
+ 47
2820
+ 49
2821
+ 1
2822
+ 1
2823
+ 15
2824
+ 99
2825
+ 7
2826
+ 19
2827
+ 7
2828
+ 20
2829
+ 65
2830
+ 5
2831
+ 49
2832
+ 21
2833
+ 4
2834
+ 11
2835
+ I
2836
+ 5
2837
+ I
2838
+ 0
2839
+ I
2840
+ 0
2841
+ I
2842
+ 0
2843
+ n
2844
+ p
2845
+ 22
2846
+ s
2847
+ 30
2848
+ alf/operator/relational/extend
2849
+ x
2850
+ 7
2851
+ require
2852
+ s
2853
+ 31
2854
+ alf/operator/relational/project
2855
+ s
2856
+ 32
2857
+ alf/operator/relational/restrict
2858
+ s
2859
+ 30
2860
+ alf/operator/relational/rename
2861
+ s
2862
+ 29
2863
+ alf/operator/relational/union
2864
+ s
2865
+ 29
2866
+ alf/operator/relational/minus
2867
+ s
2868
+ 33
2869
+ alf/operator/relational/intersect
2870
+ s
2871
+ 28
2872
+ alf/operator/relational/join
2873
+ s
2874
+ 32
2875
+ alf/operator/relational/matching
2876
+ s
2877
+ 36
2878
+ alf/operator/relational/not_matching
2879
+ s
2880
+ 28
2881
+ alf/operator/relational/wrap
2882
+ s
2883
+ 30
2884
+ alf/operator/relational/unwrap
2885
+ s
2886
+ 29
2887
+ alf/operator/relational/group
2888
+ s
2889
+ 31
2890
+ alf/operator/relational/ungroup
2891
+ s
2892
+ 33
2893
+ alf/operator/relational/summarize
2894
+ s
2895
+ 28
2896
+ alf/operator/relational/rank
2897
+ s
2898
+ 29
2899
+ alf/operator/relational/quota
2900
+ s
2901
+ 31
2902
+ alf/operator/relational/heading
2903
+ x
2904
+ 4
2905
+ each
2906
+ M
2907
+ 1
2908
+ n
2909
+ n
2910
+ x
2911
+ 4
2912
+ each
2913
+ i
2914
+ 9
2915
+ 5
2916
+ 48
2917
+ 0
2918
+ 56
2919
+ 1
2920
+ 50
2921
+ 2
2922
+ 0
2923
+ 11
2924
+ I
2925
+ 2
2926
+ I
2927
+ 0
2928
+ I
2929
+ 0
2930
+ I
2931
+ 0
2932
+ n
2933
+ p
2934
+ 3
2935
+ x
2936
+ 9
2937
+ constants
2938
+ M
2939
+ 1
2940
+ p
2941
+ 2
2942
+ x
2943
+ 9
2944
+ for_block
2945
+ t
2946
+ n
2947
+ x
2948
+ 4
2949
+ each
2950
+ i
2951
+ 37
2952
+ 57
2953
+ 19
2954
+ 0
2955
+ 15
2956
+ 5
2957
+ 20
2958
+ 0
2959
+ 47
2960
+ 49
2961
+ 0
2962
+ 1
2963
+ 19
2964
+ 1
2965
+ 15
2966
+ 20
2967
+ 1
2968
+ 49
2969
+ 1
2970
+ 0
2971
+ 45
2972
+ 2
2973
+ 3
2974
+ 43
2975
+ 4
2976
+ 49
2977
+ 5
2978
+ 1
2979
+ 9
2980
+ 35
2981
+ 20
2982
+ 1
2983
+ 60
2984
+ 1
2985
+ 8
2986
+ 36
2987
+ 1
2988
+ 11
2989
+ I
2990
+ 5
2991
+ I
2992
+ 2
2993
+ I
2994
+ 1
2995
+ I
2996
+ 1
2997
+ n
2998
+ p
2999
+ 6
3000
+ x
3001
+ 9
3002
+ const_get
3003
+ x
3004
+ 9
3005
+ ancestors
3006
+ x
3007
+ 8
3008
+ Operator
3009
+ n
3010
+ x
3011
+ 10
3012
+ Relational
3013
+ x
3014
+ 8
3015
+ include?
3016
+ p
3017
+ 9
3018
+ I
3019
+ 0
3020
+ I
3021
+ 129
3022
+ I
3023
+ 4
3024
+ I
3025
+ 12a
3026
+ I
3027
+ e
3028
+ I
3029
+ 12b
3030
+ I
3031
+ 24
3032
+ I
3033
+ 0
3034
+ I
3035
+ 25
3036
+ x
3037
+ 40
3038
+ /home/blambeau/work/devel/alf/lib/alf.rb
3039
+ p
3040
+ 2
3041
+ x
3042
+ 1
3043
+ c
3044
+ x
3045
+ 3
3046
+ val
3047
+ x
3048
+ 4
3049
+ each
3050
+ p
3051
+ 5
3052
+ I
3053
+ -1
3054
+ I
3055
+ 128
3056
+ I
3057
+ 0
3058
+ I
3059
+ 129
3060
+ I
3061
+ 9
3062
+ x
3063
+ 40
3064
+ /home/blambeau/work/devel/alf/lib/alf.rb
3065
+ p
3066
+ 0
3067
+ x
3068
+ 13
3069
+ attach_method
3070
+ p
3071
+ 39
3072
+ I
3073
+ 2
3074
+ I
3075
+ 10c
3076
+ I
3077
+ b
3078
+ I
3079
+ 10d
3080
+ I
3081
+ 14
3082
+ I
3083
+ 10e
3084
+ I
3085
+ 1d
3086
+ I
3087
+ 10f
3088
+ I
3089
+ 26
3090
+ I
3091
+ 111
3092
+ I
3093
+ 2f
3094
+ I
3095
+ 112
3096
+ I
3097
+ 38
3098
+ I
3099
+ 113
3100
+ I
3101
+ 41
3102
+ I
3103
+ 114
3104
+ I
3105
+ 4a
3106
+ I
3107
+ 116
3108
+ I
3109
+ 53
3110
+ I
3111
+ 117
3112
+ I
3113
+ 5c
3114
+ I
3115
+ 119
3116
+ I
3117
+ 65
3118
+ I
3119
+ 11a
3120
+ I
3121
+ 6e
3122
+ I
3123
+ 11c
3124
+ I
3125
+ 77
3126
+ I
3127
+ 11d
3128
+ I
3129
+ 80
3130
+ I
3131
+ 11f
3132
+ I
3133
+ 89
3134
+ I
3135
+ 120
3136
+ I
3137
+ 92
3138
+ I
3139
+ 121
3140
+ I
3141
+ 9b
3142
+ I
3143
+ 123
3144
+ I
3145
+ a4
3146
+ I
3147
+ 128
3148
+ I
3149
+ af
3150
+ x
3151
+ 40
3152
+ /home/blambeau/work/devel/alf/lib/alf.rb
3153
+ p
3154
+ 0
3155
+ p
3156
+ 29
3157
+ I
3158
+ 2
3159
+ I
3160
+ d9
3161
+ I
3162
+ e
3163
+ I
3164
+ de
3165
+ I
3166
+ 1b
3167
+ I
3168
+ e4
3169
+ I
3170
+ 24
3171
+ I
3172
+ e5
3173
+ I
3174
+ 2d
3175
+ I
3176
+ e6
3177
+ I
3178
+ 36
3179
+ I
3180
+ e7
3181
+ I
3182
+ 3f
3183
+ I
3184
+ e8
3185
+ I
3186
+ 48
3187
+ I
3188
+ e9
3189
+ I
3190
+ 51
3191
+ I
3192
+ ea
3193
+ I
3194
+ 5a
3195
+ I
3196
+ eb
3197
+ I
3198
+ 63
3199
+ I
3200
+ ec
3201
+ I
3202
+ 6c
3203
+ I
3204
+ ed
3205
+ I
3206
+ 75
3207
+ I
3208
+ f3
3209
+ I
3210
+ 8f
3211
+ I
3212
+ 10b
3213
+ I
3214
+ a9
3215
+ x
3216
+ 40
3217
+ /home/blambeau/work/devel/alf/lib/alf.rb
3218
+ p
3219
+ 0
3220
+ x
3221
+ 10
3222
+ Aggregator
3223
+ M
3224
+ 1
3225
+ n
3226
+ n
3227
+ x
3228
+ 10
3229
+ Aggregator
3230
+ i
3231
+ 29
3232
+ 5
3233
+ 66
3234
+ 5
3235
+ 7
3236
+ 0
3237
+ 64
3238
+ 47
3239
+ 49
3240
+ 1
3241
+ 1
3242
+ 15
3243
+ 5
3244
+ 7
3245
+ 2
3246
+ 64
3247
+ 47
3248
+ 49
3249
+ 1
3250
+ 1
3251
+ 15
3252
+ 5
3253
+ 7
3254
+ 3
3255
+ 64
3256
+ 47
3257
+ 49
3258
+ 1
3259
+ 1
3260
+ 11
3261
+ I
3262
+ 2
3263
+ I
3264
+ 0
3265
+ I
3266
+ 0
3267
+ I
3268
+ 0
3269
+ n
3270
+ p
3271
+ 4
3272
+ s
3273
+ 28
3274
+ alf/aggregator/class_methods
3275
+ x
3276
+ 7
3277
+ require
3278
+ s
3279
+ 19
3280
+ alf/aggregator/base
3281
+ s
3282
+ 26
3283
+ alf/aggregator/aggregators
3284
+ p
3285
+ 7
3286
+ I
3287
+ 2
3288
+ I
3289
+ 137
3290
+ I
3291
+ b
3292
+ I
3293
+ 138
3294
+ I
3295
+ 14
3296
+ I
3297
+ 139
3298
+ I
3299
+ 1d
3300
+ x
3301
+ 40
3302
+ /home/blambeau/work/devel/alf/lib/alf.rb
3303
+ p
3304
+ 0
3305
+ x
3306
+ 6
3307
+ Buffer
3308
+ M
3309
+ 1
3310
+ n
3311
+ n
3312
+ x
3313
+ 6
3314
+ Buffer
3315
+ i
3316
+ 11
3317
+ 5
3318
+ 66
3319
+ 5
3320
+ 7
3321
+ 0
3322
+ 64
3323
+ 47
3324
+ 49
3325
+ 1
3326
+ 1
3327
+ 11
3328
+ I
3329
+ 2
3330
+ I
3331
+ 0
3332
+ I
3333
+ 0
3334
+ I
3335
+ 0
3336
+ n
3337
+ p
3338
+ 2
3339
+ s
3340
+ 17
3341
+ alf/buffer/sorted
3342
+ x
3343
+ 7
3344
+ require
3345
+ p
3346
+ 3
3347
+ I
3348
+ 2
3349
+ I
3350
+ 141
3351
+ I
3352
+ b
3353
+ x
3354
+ 40
3355
+ /home/blambeau/work/devel/alf/lib/alf.rb
3356
+ p
3357
+ 0
3358
+ x
3359
+ 8
3360
+ Relation
3361
+ M
3362
+ 1
3363
+ n
3364
+ n
3365
+ x
3366
+ 8
3367
+ Relation
3368
+ i
3369
+ 66
3370
+ 5
3371
+ 66
3372
+ 5
3373
+ 45
3374
+ 0
3375
+ 1
3376
+ 47
3377
+ 49
3378
+ 2
3379
+ 1
3380
+ 15
3381
+ 5
3382
+ 7
3383
+ 3
3384
+ 64
3385
+ 47
3386
+ 49
3387
+ 4
3388
+ 1
3389
+ 15
3390
+ 5
3391
+ 7
3392
+ 5
3393
+ 64
3394
+ 47
3395
+ 49
3396
+ 4
3397
+ 1
3398
+ 15
3399
+ 65
3400
+ 7
3401
+ 6
3402
+ 45
3403
+ 7
3404
+ 8
3405
+ 44
3406
+ 43
3407
+ 9
3408
+ 78
3409
+ 49
3410
+ 10
3411
+ 1
3412
+ 35
3413
+ 1
3414
+ 49
3415
+ 11
3416
+ 1
3417
+ 49
3418
+ 12
3419
+ 2
3420
+ 15
3421
+ 65
3422
+ 7
3423
+ 13
3424
+ 45
3425
+ 7
3426
+ 14
3427
+ 35
3428
+ 0
3429
+ 49
3430
+ 11
3431
+ 1
3432
+ 49
3433
+ 12
3434
+ 2
3435
+ 11
3436
+ I
3437
+ 5
3438
+ I
3439
+ 0
3440
+ I
3441
+ 0
3442
+ I
3443
+ 0
3444
+ n
3445
+ p
3446
+ 15
3447
+ x
3448
+ 8
3449
+ Iterator
3450
+ n
3451
+ x
3452
+ 7
3453
+ include
3454
+ s
3455
+ 26
3456
+ alf/relation/class_methods
3457
+ x
3458
+ 7
3459
+ require
3460
+ s
3461
+ 29
3462
+ alf/relation/instance_methods
3463
+ x
3464
+ 3
3465
+ DEE
3466
+ x
3467
+ 8
3468
+ Relation
3469
+ n
3470
+ x
3471
+ 4
3472
+ Hash
3473
+ x
3474
+ 16
3475
+ new_from_literal
3476
+ x
3477
+ 6
3478
+ coerce
3479
+ x
3480
+ 9
3481
+ const_set
3482
+ x
3483
+ 3
3484
+ DUM
3485
+ n
3486
+ p
3487
+ 11
3488
+ I
3489
+ 2
3490
+ I
3491
+ 157
3492
+ I
3493
+ b
3494
+ I
3495
+ 159
3496
+ I
3497
+ 14
3498
+ I
3499
+ 15a
3500
+ I
3501
+ 1d
3502
+ I
3503
+ 15c
3504
+ I
3505
+ 33
3506
+ I
3507
+ 15d
3508
+ I
3509
+ 42
3510
+ x
3511
+ 40
3512
+ /home/blambeau/work/devel/alf/lib/alf.rb
3513
+ p
3514
+ 0
3515
+ x
3516
+ 5
3517
+ Lispy
3518
+ M
3519
+ 1
3520
+ n
3521
+ n
3522
+ x
3523
+ 5
3524
+ Lispy
3525
+ i
3526
+ 35
3527
+ 5
3528
+ 66
3529
+ 5
3530
+ 7
3531
+ 0
3532
+ 64
3533
+ 47
3534
+ 49
3535
+ 1
3536
+ 1
3537
+ 15
3538
+ 65
3539
+ 7
3540
+ 2
3541
+ 45
3542
+ 3
3543
+ 4
3544
+ 43
3545
+ 2
3546
+ 49
3547
+ 5
3548
+ 2
3549
+ 15
3550
+ 65
3551
+ 7
3552
+ 6
3553
+ 45
3554
+ 3
3555
+ 7
3556
+ 43
3557
+ 6
3558
+ 49
3559
+ 5
3560
+ 2
3561
+ 11
3562
+ I
3563
+ 3
3564
+ I
3565
+ 0
3566
+ I
3567
+ 0
3568
+ I
3569
+ 0
3570
+ n
3571
+ p
3572
+ 8
3573
+ s
3574
+ 26
3575
+ alf/lispy/instance_methods
3576
+ x
3577
+ 7
3578
+ require
3579
+ x
3580
+ 3
3581
+ DUM
3582
+ x
3583
+ 8
3584
+ Relation
3585
+ n
3586
+ x
3587
+ 9
3588
+ const_set
3589
+ x
3590
+ 3
3591
+ DEE
3592
+ n
3593
+ p
3594
+ 7
3595
+ I
3596
+ 2
3597
+ I
3598
+ 170
3599
+ I
3600
+ b
3601
+ I
3602
+ 172
3603
+ I
3604
+ 17
3605
+ I
3606
+ 173
3607
+ I
3608
+ 23
3609
+ x
3610
+ 40
3611
+ /home/blambeau/work/devel/alf/lib/alf.rb
3612
+ p
3613
+ 0
3614
+ x
3615
+ 5
3616
+ lispy
3617
+ M
3618
+ 1
3619
+ n
3620
+ n
3621
+ x
3622
+ 5
3623
+ lispy
3624
+ i
3625
+ 67
3626
+ 23
3627
+ 0
3628
+ 10
3629
+ 13
3630
+ 45
3631
+ 0
3632
+ 1
3633
+ 49
3634
+ 2
3635
+ 0
3636
+ 19
3637
+ 0
3638
+ 15
3639
+ 45
3640
+ 3
3641
+ 4
3642
+ 13
3643
+ 71
3644
+ 5
3645
+ 47
3646
+ 9
3647
+ 34
3648
+ 47
3649
+ 49
3650
+ 6
3651
+ 0
3652
+ 13
3653
+ 47
3654
+ 49
3655
+ 7
3656
+ 0
3657
+ 15
3658
+ 8
3659
+ 37
3660
+ 49
3661
+ 5
3662
+ 0
3663
+ 45
3664
+ 8
3665
+ 9
3666
+ 49
3667
+ 10
3668
+ 1
3669
+ 19
3670
+ 1
3671
+ 15
3672
+ 20
3673
+ 1
3674
+ 45
3675
+ 0
3676
+ 11
3677
+ 20
3678
+ 0
3679
+ 49
3680
+ 12
3681
+ 1
3682
+ 13
3683
+ 18
3684
+ 2
3685
+ 49
3686
+ 13
3687
+ 1
3688
+ 15
3689
+ 15
3690
+ 20
3691
+ 1
3692
+ 11
3693
+ I
3694
+ 5
3695
+ I
3696
+ 2
3697
+ I
3698
+ 0
3699
+ I
3700
+ 1
3701
+ n
3702
+ p
3703
+ 14
3704
+ x
3705
+ 11
3706
+ Environment
3707
+ n
3708
+ x
3709
+ 7
3710
+ default
3711
+ x
3712
+ 6
3713
+ Object
3714
+ n
3715
+ x
3716
+ 3
3717
+ new
3718
+ x
3719
+ 8
3720
+ allocate
3721
+ x
3722
+ 10
3723
+ initialize
3724
+ x
3725
+ 5
3726
+ Lispy
3727
+ n
3728
+ x
3729
+ 6
3730
+ extend
3731
+ n
3732
+ x
3733
+ 6
3734
+ coerce
3735
+ x
3736
+ 12
3737
+ environment=
3738
+ p
3739
+ 9
3740
+ I
3741
+ -1
3742
+ I
3743
+ 186
3744
+ I
3745
+ d
3746
+ I
3747
+ 187
3748
+ I
3749
+ 2e
3750
+ I
3751
+ 188
3752
+ I
3753
+ 40
3754
+ I
3755
+ 189
3756
+ I
3757
+ 43
3758
+ x
3759
+ 40
3760
+ /home/blambeau/work/devel/alf/lib/alf.rb
3761
+ p
3762
+ 2
3763
+ x
3764
+ 3
3765
+ env
3766
+ x
3767
+ 5
3768
+ lispy
3769
+ p
3770
+ 27
3771
+ I
3772
+ 2
3773
+ I
3774
+ 14
3775
+ I
3776
+ 1c
3777
+ I
3778
+ 29
3779
+ I
3780
+ 36
3781
+ I
3782
+ 4d
3783
+ I
3784
+ 51
3785
+ I
3786
+ 64
3787
+ I
3788
+ 6b
3789
+ I
3790
+ 87
3791
+ I
3792
+ 86
3793
+ I
3794
+ a7
3795
+ I
3796
+ a1
3797
+ I
3798
+ b3
3799
+ I
3800
+ bb
3801
+ I
3802
+ d8
3803
+ I
3804
+ d5
3805
+ I
3806
+ 136
3807
+ I
3808
+ f0
3809
+ I
3810
+ 140
3811
+ I
3812
+ 10b
3813
+ I
3814
+ 156
3815
+ I
3816
+ 126
3817
+ I
3818
+ 16f
3819
+ I
3820
+ 140
3821
+ I
3822
+ 186
3823
+ I
3824
+ 14b
3825
+ x
3826
+ 40
3827
+ /home/blambeau/work/devel/alf/lib/alf.rb
3828
+ p
3829
+ 0
3830
+ x
3831
+ 13
3832
+ attach_method
3833
+ s
3834
+ 9
3835
+ alf/extra
3836
+ p
3837
+ 21
3838
+ I
3839
+ 0
3840
+ I
3841
+ 1
3842
+ I
3843
+ 9
3844
+ I
3845
+ 2
3846
+ I
3847
+ 12
3848
+ I
3849
+ 3
3850
+ I
3851
+ 1b
3852
+ I
3853
+ 5
3854
+ I
3855
+ 24
3856
+ I
3857
+ 6
3858
+ I
3859
+ 2d
3860
+ I
3861
+ 7
3862
+ I
3863
+ 36
3864
+ I
3865
+ 9
3866
+ I
3867
+ 3f
3868
+ I
3869
+ a
3870
+ I
3871
+ 48
3872
+ I
3873
+ f
3874
+ I
3875
+ 62
3876
+ I
3877
+ 18d
3878
+ I
3879
+ 6d
3880
+ x
3881
+ 40
3882
+ /home/blambeau/work/devel/alf/lib/alf.rb
3883
+ p
3884
+ 0