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,4640 @@
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
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 8
111
+ Operator
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 8
124
+ Operator
125
+ i
126
+ 29
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 1
133
+ 65
134
+ 49
135
+ 1
136
+ 3
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
+ 11
156
+ I
157
+ 6
158
+ I
159
+ 0
160
+ I
161
+ 0
162
+ I
163
+ 0
164
+ n
165
+ p
166
+ 5
167
+ x
168
+ 9
169
+ Signature
170
+ x
171
+ 10
172
+ open_class
173
+ x
174
+ 14
175
+ __class_init__
176
+ M
177
+ 1
178
+ n
179
+ n
180
+ x
181
+ 9
182
+ Signature
183
+ i
184
+ 240
185
+ 5
186
+ 66
187
+ 5
188
+ 7
189
+ 0
190
+ 47
191
+ 49
192
+ 1
193
+ 1
194
+ 15
195
+ 5
196
+ 7
197
+ 2
198
+ 47
199
+ 49
200
+ 1
201
+ 1
202
+ 15
203
+ 5
204
+ 7
205
+ 3
206
+ 47
207
+ 49
208
+ 1
209
+ 1
210
+ 15
211
+ 99
212
+ 7
213
+ 4
214
+ 7
215
+ 5
216
+ 65
217
+ 67
218
+ 49
219
+ 6
220
+ 0
221
+ 49
222
+ 7
223
+ 4
224
+ 15
225
+ 99
226
+ 7
227
+ 8
228
+ 7
229
+ 9
230
+ 65
231
+ 67
232
+ 49
233
+ 6
234
+ 0
235
+ 49
236
+ 7
237
+ 4
238
+ 15
239
+ 99
240
+ 7
241
+ 10
242
+ 7
243
+ 11
244
+ 65
245
+ 67
246
+ 49
247
+ 6
248
+ 0
249
+ 49
250
+ 7
251
+ 4
252
+ 15
253
+ 99
254
+ 7
255
+ 12
256
+ 7
257
+ 13
258
+ 65
259
+ 67
260
+ 49
261
+ 6
262
+ 0
263
+ 49
264
+ 7
265
+ 4
266
+ 15
267
+ 99
268
+ 7
269
+ 14
270
+ 7
271
+ 15
272
+ 65
273
+ 67
274
+ 49
275
+ 6
276
+ 0
277
+ 49
278
+ 7
279
+ 4
280
+ 15
281
+ 99
282
+ 7
283
+ 16
284
+ 7
285
+ 17
286
+ 65
287
+ 67
288
+ 49
289
+ 6
290
+ 0
291
+ 49
292
+ 7
293
+ 4
294
+ 15
295
+ 99
296
+ 7
297
+ 18
298
+ 7
299
+ 19
300
+ 65
301
+ 67
302
+ 49
303
+ 6
304
+ 0
305
+ 49
306
+ 7
307
+ 4
308
+ 15
309
+ 99
310
+ 7
311
+ 20
312
+ 7
313
+ 21
314
+ 65
315
+ 67
316
+ 49
317
+ 6
318
+ 0
319
+ 49
320
+ 7
321
+ 4
322
+ 15
323
+ 99
324
+ 7
325
+ 22
326
+ 7
327
+ 23
328
+ 65
329
+ 67
330
+ 49
331
+ 6
332
+ 0
333
+ 49
334
+ 7
335
+ 4
336
+ 15
337
+ 99
338
+ 7
339
+ 24
340
+ 7
341
+ 25
342
+ 65
343
+ 67
344
+ 49
345
+ 6
346
+ 0
347
+ 49
348
+ 7
349
+ 4
350
+ 15
351
+ 99
352
+ 7
353
+ 26
354
+ 7
355
+ 27
356
+ 65
357
+ 67
358
+ 49
359
+ 6
360
+ 0
361
+ 49
362
+ 7
363
+ 4
364
+ 15
365
+ 99
366
+ 7
367
+ 28
368
+ 7
369
+ 29
370
+ 65
371
+ 67
372
+ 49
373
+ 6
374
+ 0
375
+ 49
376
+ 7
377
+ 4
378
+ 15
379
+ 5
380
+ 48
381
+ 30
382
+ 15
383
+ 99
384
+ 7
385
+ 31
386
+ 7
387
+ 32
388
+ 65
389
+ 67
390
+ 49
391
+ 6
392
+ 0
393
+ 49
394
+ 7
395
+ 4
396
+ 15
397
+ 99
398
+ 7
399
+ 33
400
+ 7
401
+ 34
402
+ 65
403
+ 67
404
+ 49
405
+ 6
406
+ 0
407
+ 49
408
+ 7
409
+ 4
410
+ 15
411
+ 99
412
+ 7
413
+ 35
414
+ 7
415
+ 36
416
+ 65
417
+ 67
418
+ 49
419
+ 6
420
+ 0
421
+ 49
422
+ 7
423
+ 4
424
+ 11
425
+ I
426
+ 5
427
+ I
428
+ 0
429
+ I
430
+ 0
431
+ I
432
+ 0
433
+ n
434
+ p
435
+ 37
436
+ x
437
+ 8
438
+ operator
439
+ x
440
+ 11
441
+ attr_reader
442
+ x
443
+ 9
444
+ arguments
445
+ x
446
+ 7
447
+ options
448
+ x
449
+ 10
450
+ initialize
451
+ M
452
+ 1
453
+ n
454
+ n
455
+ x
456
+ 10
457
+ initialize
458
+ i
459
+ 25
460
+ 20
461
+ 0
462
+ 38
463
+ 0
464
+ 15
465
+ 35
466
+ 0
467
+ 38
468
+ 1
469
+ 15
470
+ 35
471
+ 0
472
+ 38
473
+ 2
474
+ 15
475
+ 94
476
+ 9
477
+ 23
478
+ 5
479
+ 60
480
+ 1
481
+ 8
482
+ 24
483
+ 1
484
+ 11
485
+ I
486
+ 2
487
+ I
488
+ 1
489
+ I
490
+ 1
491
+ I
492
+ 1
493
+ n
494
+ p
495
+ 3
496
+ x
497
+ 9
498
+ @operator
499
+ x
500
+ 10
501
+ @arguments
502
+ x
503
+ 8
504
+ @options
505
+ p
506
+ 13
507
+ I
508
+ -1
509
+ I
510
+ 12
511
+ I
512
+ 0
513
+ I
514
+ 13
515
+ I
516
+ 5
517
+ I
518
+ 14
519
+ I
520
+ a
521
+ I
522
+ 15
523
+ I
524
+ f
525
+ I
526
+ 16
527
+ I
528
+ 18
529
+ I
530
+ 0
531
+ I
532
+ 19
533
+ x
534
+ 59
535
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
536
+ p
537
+ 1
538
+ x
539
+ 8
540
+ operator
541
+ x
542
+ 17
543
+ method_visibility
544
+ x
545
+ 15
546
+ add_defn_method
547
+ x
548
+ 8
549
+ argument
550
+ M
551
+ 1
552
+ n
553
+ n
554
+ x
555
+ 8
556
+ argument
557
+ i
558
+ 33
559
+ 23
560
+ 2
561
+ 10
562
+ 8
563
+ 1
564
+ 19
565
+ 2
566
+ 15
567
+ 23
568
+ 3
569
+ 10
570
+ 16
571
+ 1
572
+ 19
573
+ 3
574
+ 15
575
+ 5
576
+ 48
577
+ 0
578
+ 20
579
+ 0
580
+ 20
581
+ 1
582
+ 20
583
+ 2
584
+ 20
585
+ 3
586
+ 35
587
+ 4
588
+ 49
589
+ 1
590
+ 1
591
+ 11
592
+ I
593
+ 9
594
+ I
595
+ 4
596
+ I
597
+ 2
598
+ I
599
+ 4
600
+ n
601
+ p
602
+ 2
603
+ x
604
+ 9
605
+ arguments
606
+ x
607
+ 2
608
+ <<
609
+ p
610
+ 5
611
+ I
612
+ -1
613
+ I
614
+ 20
615
+ I
616
+ 10
617
+ I
618
+ 21
619
+ I
620
+ 21
621
+ x
622
+ 59
623
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
624
+ p
625
+ 4
626
+ x
627
+ 4
628
+ name
629
+ x
630
+ 6
631
+ domain
632
+ x
633
+ 7
634
+ default
635
+ x
636
+ 5
637
+ descr
638
+ x
639
+ 6
640
+ option
641
+ M
642
+ 1
643
+ n
644
+ n
645
+ x
646
+ 6
647
+ option
648
+ i
649
+ 33
650
+ 23
651
+ 2
652
+ 10
653
+ 8
654
+ 1
655
+ 19
656
+ 2
657
+ 15
658
+ 23
659
+ 3
660
+ 10
661
+ 16
662
+ 1
663
+ 19
664
+ 3
665
+ 15
666
+ 5
667
+ 48
668
+ 0
669
+ 20
670
+ 0
671
+ 20
672
+ 1
673
+ 20
674
+ 2
675
+ 20
676
+ 3
677
+ 35
678
+ 4
679
+ 49
680
+ 1
681
+ 1
682
+ 11
683
+ I
684
+ 9
685
+ I
686
+ 4
687
+ I
688
+ 2
689
+ I
690
+ 4
691
+ n
692
+ p
693
+ 2
694
+ x
695
+ 7
696
+ options
697
+ x
698
+ 2
699
+ <<
700
+ p
701
+ 5
702
+ I
703
+ -1
704
+ I
705
+ 2b
706
+ I
707
+ 10
708
+ I
709
+ 2c
710
+ I
711
+ 21
712
+ x
713
+ 59
714
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
715
+ p
716
+ 4
717
+ x
718
+ 4
719
+ name
720
+ x
721
+ 6
722
+ domain
723
+ x
724
+ 7
725
+ default
726
+ x
727
+ 5
728
+ descr
729
+ x
730
+ 15
731
+ default_options
732
+ M
733
+ 1
734
+ n
735
+ n
736
+ x
737
+ 15
738
+ default_options
739
+ i
740
+ 28
741
+ 39
742
+ 0
743
+ 13
744
+ 10
745
+ 27
746
+ 15
747
+ 45
748
+ 1
749
+ 2
750
+ 5
751
+ 48
752
+ 3
753
+ 56
754
+ 4
755
+ 50
756
+ 5
757
+ 0
758
+ 56
759
+ 6
760
+ 50
761
+ 7
762
+ 0
763
+ 49
764
+ 8
765
+ 1
766
+ 38
767
+ 0
768
+ 11
769
+ I
770
+ 3
771
+ I
772
+ 0
773
+ I
774
+ 0
775
+ I
776
+ 0
777
+ n
778
+ p
779
+ 9
780
+ x
781
+ 16
782
+ @default_options
783
+ x
784
+ 4
785
+ Hash
786
+ n
787
+ x
788
+ 7
789
+ options
790
+ M
791
+ 1
792
+ p
793
+ 2
794
+ x
795
+ 9
796
+ for_block
797
+ t
798
+ n
799
+ x
800
+ 15
801
+ default_options
802
+ i
803
+ 20
804
+ 57
805
+ 19
806
+ 0
807
+ 15
808
+ 20
809
+ 0
810
+ 80
811
+ 49
812
+ 0
813
+ 1
814
+ 49
815
+ 1
816
+ 0
817
+ 10
818
+ 18
819
+ 2
820
+ 8
821
+ 19
822
+ 3
823
+ 11
824
+ I
825
+ 4
826
+ I
827
+ 1
828
+ I
829
+ 1
830
+ I
831
+ 1
832
+ n
833
+ p
834
+ 2
835
+ x
836
+ 2
837
+ []
838
+ x
839
+ 4
840
+ nil?
841
+ p
842
+ 3
843
+ I
844
+ 0
845
+ I
846
+ 36
847
+ I
848
+ 14
849
+ x
850
+ 59
851
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
852
+ p
853
+ 1
854
+ x
855
+ 3
856
+ opt
857
+ x
858
+ 6
859
+ select
860
+ M
861
+ 1
862
+ p
863
+ 2
864
+ x
865
+ 9
866
+ for_block
867
+ t
868
+ n
869
+ x
870
+ 15
871
+ default_options
872
+ i
873
+ 19
874
+ 57
875
+ 19
876
+ 0
877
+ 15
878
+ 20
879
+ 0
880
+ 78
881
+ 49
882
+ 0
883
+ 1
884
+ 20
885
+ 0
886
+ 80
887
+ 49
888
+ 0
889
+ 1
890
+ 35
891
+ 2
892
+ 11
893
+ I
894
+ 5
895
+ I
896
+ 1
897
+ I
898
+ 1
899
+ I
900
+ 1
901
+ n
902
+ p
903
+ 1
904
+ x
905
+ 2
906
+ []
907
+ p
908
+ 5
909
+ I
910
+ 0
911
+ I
912
+ 36
913
+ I
914
+ 1
915
+ I
916
+ 37
917
+ I
918
+ 13
919
+ x
920
+ 59
921
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
922
+ p
923
+ 1
924
+ x
925
+ 3
926
+ opt
927
+ x
928
+ 7
929
+ collect
930
+ x
931
+ 2
932
+ []
933
+ p
934
+ 9
935
+ I
936
+ -1
937
+ I
938
+ 34
939
+ I
940
+ 0
941
+ I
942
+ 37
943
+ I
944
+ 6
945
+ I
946
+ 36
947
+ I
948
+ 19
949
+ I
950
+ 35
951
+ I
952
+ 1c
953
+ x
954
+ 59
955
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
956
+ p
957
+ 0
958
+ x
959
+ 18
960
+ fill_option_parser
961
+ M
962
+ 1
963
+ n
964
+ n
965
+ x
966
+ 18
967
+ fill_option_parser
968
+ i
969
+ 12
970
+ 5
971
+ 48
972
+ 0
973
+ 56
974
+ 1
975
+ 50
976
+ 2
977
+ 0
978
+ 15
979
+ 20
980
+ 0
981
+ 11
982
+ I
983
+ 4
984
+ I
985
+ 2
986
+ I
987
+ 2
988
+ I
989
+ 2
990
+ n
991
+ p
992
+ 3
993
+ x
994
+ 7
995
+ options
996
+ M
997
+ 1
998
+ p
999
+ 2
1000
+ x
1001
+ 9
1002
+ for_block
1003
+ t
1004
+ n
1005
+ x
1006
+ 18
1007
+ fill_option_parser
1008
+ i
1009
+ 51
1010
+ 57
1011
+ 19
1012
+ 0
1013
+ 15
1014
+ 20
1015
+ 0
1016
+ 97
1017
+ 37
1018
+ 19
1019
+ 1
1020
+ 15
1021
+ 37
1022
+ 19
1023
+ 2
1024
+ 15
1025
+ 37
1026
+ 19
1027
+ 3
1028
+ 15
1029
+ 37
1030
+ 19
1031
+ 4
1032
+ 15
1033
+ 15
1034
+ 2
1035
+ 15
1036
+ 21
1037
+ 1
1038
+ 0
1039
+ 5
1040
+ 20
1041
+ 0
1042
+ 47
1043
+ 49
1044
+ 0
1045
+ 1
1046
+ 20
1047
+ 4
1048
+ 13
1049
+ 10
1050
+ 45
1051
+ 15
1052
+ 7
1053
+ 1
1054
+ 64
1055
+ 56
1056
+ 2
1057
+ 50
1058
+ 3
1059
+ 2
1060
+ 11
1061
+ I
1062
+ a
1063
+ I
1064
+ 5
1065
+ I
1066
+ 1
1067
+ I
1068
+ 1
1069
+ n
1070
+ p
1071
+ 4
1072
+ x
1073
+ 11
1074
+ option_name
1075
+ s
1076
+ 0
1077
+
1078
+ M
1079
+ 1
1080
+ p
1081
+ 2
1082
+ x
1083
+ 9
1084
+ for_block
1085
+ t
1086
+ n
1087
+ x
1088
+ 18
1089
+ fill_option_parser
1090
+ i
1091
+ 27
1092
+ 57
1093
+ 19
1094
+ 0
1095
+ 15
1096
+ 21
1097
+ 2
1098
+ 1
1099
+ 21
1100
+ 1
1101
+ 1
1102
+ 47
1103
+ 101
1104
+ 0
1105
+ 7
1106
+ 1
1107
+ 63
1108
+ 2
1109
+ 47
1110
+ 49
1111
+ 2
1112
+ 0
1113
+ 20
1114
+ 0
1115
+ 49
1116
+ 3
1117
+ 2
1118
+ 11
1119
+ I
1120
+ 5
1121
+ I
1122
+ 1
1123
+ I
1124
+ 1
1125
+ I
1126
+ 1
1127
+ n
1128
+ p
1129
+ 4
1130
+ x
1131
+ 4
1132
+ to_s
1133
+ s
1134
+ 1
1135
+ =
1136
+ x
1137
+ 6
1138
+ to_sym
1139
+ x
1140
+ 4
1141
+ send
1142
+ p
1143
+ 5
1144
+ I
1145
+ 0
1146
+ I
1147
+ 43
1148
+ I
1149
+ 4
1150
+ I
1151
+ 44
1152
+ I
1153
+ 1b
1154
+ x
1155
+ 59
1156
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1157
+ p
1158
+ 1
1159
+ x
1160
+ 3
1161
+ val
1162
+ x
1163
+ 2
1164
+ on
1165
+ p
1166
+ 7
1167
+ I
1168
+ 0
1169
+ I
1170
+ 41
1171
+ I
1172
+ 4
1173
+ I
1174
+ 42
1175
+ I
1176
+ 1a
1177
+ I
1178
+ 43
1179
+ I
1180
+ 33
1181
+ x
1182
+ 59
1183
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1184
+ p
1185
+ 5
1186
+ x
1187
+ 6
1188
+ option
1189
+ x
1190
+ 4
1191
+ name
1192
+ x
1193
+ 3
1194
+ dom
1195
+ x
1196
+ 4
1197
+ defa
1198
+ x
1199
+ 5
1200
+ descr
1201
+ x
1202
+ 4
1203
+ each
1204
+ p
1205
+ 7
1206
+ I
1207
+ -1
1208
+ I
1209
+ 40
1210
+ I
1211
+ 0
1212
+ I
1213
+ 41
1214
+ I
1215
+ 9
1216
+ I
1217
+ 47
1218
+ I
1219
+ c
1220
+ x
1221
+ 59
1222
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1223
+ p
1224
+ 2
1225
+ x
1226
+ 3
1227
+ opt
1228
+ x
1229
+ 8
1230
+ receiver
1231
+ x
1232
+ 13
1233
+ option_parser
1234
+ M
1235
+ 1
1236
+ n
1237
+ n
1238
+ x
1239
+ 13
1240
+ option_parser
1241
+ i
1242
+ 32
1243
+ 5
1244
+ 45
1245
+ 0
1246
+ 1
1247
+ 13
1248
+ 71
1249
+ 2
1250
+ 47
1251
+ 9
1252
+ 22
1253
+ 47
1254
+ 49
1255
+ 3
1256
+ 0
1257
+ 13
1258
+ 47
1259
+ 49
1260
+ 4
1261
+ 0
1262
+ 15
1263
+ 8
1264
+ 25
1265
+ 49
1266
+ 2
1267
+ 0
1268
+ 20
1269
+ 0
1270
+ 47
1271
+ 49
1272
+ 5
1273
+ 2
1274
+ 11
1275
+ I
1276
+ 4
1277
+ I
1278
+ 1
1279
+ I
1280
+ 1
1281
+ I
1282
+ 1
1283
+ n
1284
+ p
1285
+ 6
1286
+ x
1287
+ 12
1288
+ OptionParser
1289
+ n
1290
+ x
1291
+ 3
1292
+ new
1293
+ x
1294
+ 8
1295
+ allocate
1296
+ x
1297
+ 10
1298
+ initialize
1299
+ x
1300
+ 18
1301
+ fill_option_parser
1302
+ p
1303
+ 5
1304
+ I
1305
+ -1
1306
+ I
1307
+ 50
1308
+ I
1309
+ 0
1310
+ I
1311
+ 51
1312
+ I
1313
+ 20
1314
+ x
1315
+ 59
1316
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1317
+ p
1318
+ 1
1319
+ x
1320
+ 8
1321
+ receiver
1322
+ x
1323
+ 7
1324
+ install
1325
+ M
1326
+ 1
1327
+ n
1328
+ n
1329
+ x
1330
+ 7
1331
+ install
1332
+ i
1333
+ 26
1334
+ 5
1335
+ 48
1336
+ 0
1337
+ 19
1338
+ 0
1339
+ 15
1340
+ 5
1341
+ 48
1342
+ 1
1343
+ 5
1344
+ 48
1345
+ 2
1346
+ 81
1347
+ 3
1348
+ 56
1349
+ 4
1350
+ 50
1351
+ 5
1352
+ 0
1353
+ 19
1354
+ 1
1355
+ 15
1356
+ 5
1357
+ 48
1358
+ 6
1359
+ 11
1360
+ I
1361
+ 4
1362
+ I
1363
+ 2
1364
+ I
1365
+ 0
1366
+ I
1367
+ 0
1368
+ n
1369
+ p
1370
+ 7
1371
+ x
1372
+ 8
1373
+ operator
1374
+ x
1375
+ 9
1376
+ arguments
1377
+ x
1378
+ 7
1379
+ options
1380
+ x
1381
+ 1
1382
+ +
1383
+ M
1384
+ 1
1385
+ p
1386
+ 2
1387
+ x
1388
+ 9
1389
+ for_block
1390
+ t
1391
+ n
1392
+ x
1393
+ 7
1394
+ install
1395
+ i
1396
+ 75
1397
+ 57
1398
+ 19
1399
+ 0
1400
+ 15
1401
+ 20
1402
+ 0
1403
+ 97
1404
+ 37
1405
+ 19
1406
+ 1
1407
+ 15
1408
+ 37
1409
+ 19
1410
+ 2
1411
+ 15
1412
+ 15
1413
+ 2
1414
+ 15
1415
+ 21
1416
+ 1
1417
+ 0
1418
+ 7
1419
+ 0
1420
+ 20
1421
+ 1
1422
+ 49
1423
+ 1
1424
+ 2
1425
+ 15
1426
+ 21
1427
+ 1
1428
+ 0
1429
+ 7
1430
+ 2
1431
+ 20
1432
+ 1
1433
+ 47
1434
+ 101
1435
+ 3
1436
+ 7
1437
+ 4
1438
+ 63
1439
+ 2
1440
+ 47
1441
+ 49
1442
+ 5
1443
+ 0
1444
+ 56
1445
+ 6
1446
+ 50
1447
+ 1
1448
+ 2
1449
+ 15
1450
+ 21
1451
+ 1
1452
+ 0
1453
+ 7
1454
+ 7
1455
+ 20
1456
+ 1
1457
+ 47
1458
+ 101
1459
+ 3
1460
+ 7
1461
+ 4
1462
+ 63
1463
+ 2
1464
+ 47
1465
+ 49
1466
+ 5
1467
+ 0
1468
+ 49
1469
+ 1
1470
+ 2
1471
+ 11
1472
+ I
1473
+ 8
1474
+ I
1475
+ 3
1476
+ I
1477
+ 1
1478
+ I
1479
+ 1
1480
+ n
1481
+ p
1482
+ 8
1483
+ x
1484
+ 11
1485
+ attr_reader
1486
+ x
1487
+ 4
1488
+ send
1489
+ x
1490
+ 13
1491
+ define_method
1492
+ x
1493
+ 4
1494
+ to_s
1495
+ s
1496
+ 1
1497
+ =
1498
+ x
1499
+ 6
1500
+ to_sym
1501
+ M
1502
+ 1
1503
+ p
1504
+ 2
1505
+ x
1506
+ 9
1507
+ for_block
1508
+ t
1509
+ n
1510
+ x
1511
+ 7
1512
+ install
1513
+ i
1514
+ 35
1515
+ 57
1516
+ 19
1517
+ 0
1518
+ 15
1519
+ 5
1520
+ 7
1521
+ 0
1522
+ 21
1523
+ 1
1524
+ 1
1525
+ 47
1526
+ 101
1527
+ 1
1528
+ 63
1529
+ 2
1530
+ 47
1531
+ 49
1532
+ 2
1533
+ 0
1534
+ 45
1535
+ 3
1536
+ 4
1537
+ 20
1538
+ 0
1539
+ 21
1540
+ 1
1541
+ 2
1542
+ 49
1543
+ 5
1544
+ 2
1545
+ 47
1546
+ 49
1547
+ 6
1548
+ 2
1549
+ 11
1550
+ I
1551
+ 7
1552
+ I
1553
+ 1
1554
+ I
1555
+ 1
1556
+ I
1557
+ 1
1558
+ n
1559
+ p
1560
+ 7
1561
+ s
1562
+ 1
1563
+ @
1564
+ x
1565
+ 4
1566
+ to_s
1567
+ x
1568
+ 6
1569
+ to_sym
1570
+ x
1571
+ 5
1572
+ Tools
1573
+ n
1574
+ x
1575
+ 6
1576
+ coerce
1577
+ x
1578
+ 21
1579
+ instance_variable_set
1580
+ p
1581
+ 5
1582
+ I
1583
+ 0
1584
+ I
1585
+ 61
1586
+ I
1587
+ 4
1588
+ I
1589
+ 62
1590
+ I
1591
+ 23
1592
+ x
1593
+ 59
1594
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1595
+ p
1596
+ 1
1597
+ x
1598
+ 3
1599
+ val
1600
+ x
1601
+ 7
1602
+ private
1603
+ p
1604
+ 11
1605
+ I
1606
+ 0
1607
+ I
1608
+ 5e
1609
+ I
1610
+ 4
1611
+ I
1612
+ 5f
1613
+ I
1614
+ 12
1615
+ I
1616
+ 60
1617
+ I
1618
+ 1d
1619
+ I
1620
+ 61
1621
+ I
1622
+ 35
1623
+ I
1624
+ 64
1625
+ I
1626
+ 4b
1627
+ x
1628
+ 59
1629
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1630
+ p
1631
+ 3
1632
+ x
1633
+ 7
1634
+ siginfo
1635
+ x
1636
+ 4
1637
+ name
1638
+ x
1639
+ 6
1640
+ domain
1641
+ x
1642
+ 4
1643
+ each
1644
+ x
1645
+ 15
1646
+ default_options
1647
+ p
1648
+ 9
1649
+ I
1650
+ -1
1651
+ I
1652
+ 5c
1653
+ I
1654
+ 0
1655
+ I
1656
+ 5d
1657
+ I
1658
+ 6
1659
+ I
1660
+ 5e
1661
+ I
1662
+ 16
1663
+ I
1664
+ 66
1665
+ I
1666
+ 1a
1667
+ x
1668
+ 59
1669
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1670
+ p
1671
+ 2
1672
+ x
1673
+ 5
1674
+ clazz
1675
+ x
1676
+ 4
1677
+ code
1678
+ x
1679
+ 10
1680
+ parse_args
1681
+ M
1682
+ 1
1683
+ n
1684
+ n
1685
+ x
1686
+ 10
1687
+ parse_args
1688
+ i
1689
+ 113
1690
+ 20
1691
+ 0
1692
+ 49
1693
+ 0
1694
+ 0
1695
+ 79
1696
+ 5
1697
+ 48
1698
+ 1
1699
+ 49
1700
+ 0
1701
+ 0
1702
+ 81
1703
+ 2
1704
+ 85
1705
+ 3
1706
+ 9
1707
+ 27
1708
+ 5
1709
+ 20
1710
+ 0
1711
+ 47
1712
+ 49
1713
+ 4
1714
+ 1
1715
+ 8
1716
+ 28
1717
+ 1
1718
+ 15
1719
+ 5
1720
+ 48
1721
+ 5
1722
+ 19
1723
+ 2
1724
+ 15
1725
+ 20
1726
+ 0
1727
+ 49
1728
+ 0
1729
+ 0
1730
+ 79
1731
+ 5
1732
+ 48
1733
+ 1
1734
+ 49
1735
+ 0
1736
+ 0
1737
+ 81
1738
+ 2
1739
+ 83
1740
+ 6
1741
+ 9
1742
+ 91
1743
+ 20
1744
+ 0
1745
+ 49
1746
+ 7
1747
+ 0
1748
+ 45
1749
+ 8
1750
+ 9
1751
+ 49
1752
+ 10
1753
+ 1
1754
+ 9
1755
+ 69
1756
+ 1
1757
+ 8
1758
+ 76
1759
+ 5
1760
+ 20
1761
+ 0
1762
+ 47
1763
+ 49
1764
+ 4
1765
+ 1
1766
+ 15
1767
+ 20
1768
+ 2
1769
+ 20
1770
+ 0
1771
+ 49
1772
+ 11
1773
+ 0
1774
+ 49
1775
+ 12
1776
+ 1
1777
+ 19
1778
+ 2
1779
+ 8
1780
+ 92
1781
+ 1
1782
+ 15
1783
+ 20
1784
+ 2
1785
+ 56
1786
+ 13
1787
+ 50
1788
+ 14
1789
+ 0
1790
+ 15
1791
+ 5
1792
+ 20
1793
+ 0
1794
+ 7
1795
+ 15
1796
+ 56
1797
+ 16
1798
+ 47
1799
+ 50
1800
+ 17
1801
+ 2
1802
+ 11
1803
+ I
1804
+ 7
1805
+ I
1806
+ 3
1807
+ I
1808
+ 2
1809
+ I
1810
+ 2
1811
+ n
1812
+ p
1813
+ 18
1814
+ x
1815
+ 4
1816
+ size
1817
+ x
1818
+ 9
1819
+ arguments
1820
+ x
1821
+ 1
1822
+ +
1823
+ x
1824
+ 1
1825
+ >
1826
+ x
1827
+ 13
1828
+ invalid_args!
1829
+ x
1830
+ 15
1831
+ default_options
1832
+ x
1833
+ 2
1834
+ ==
1835
+ x
1836
+ 4
1837
+ last
1838
+ x
1839
+ 4
1840
+ Hash
1841
+ n
1842
+ x
1843
+ 5
1844
+ is_a?
1845
+ x
1846
+ 3
1847
+ pop
1848
+ x
1849
+ 5
1850
+ merge
1851
+ M
1852
+ 1
1853
+ p
1854
+ 2
1855
+ x
1856
+ 9
1857
+ for_block
1858
+ t
1859
+ n
1860
+ x
1861
+ 10
1862
+ parse_args
1863
+ i
1864
+ 32
1865
+ 58
1866
+ 37
1867
+ 19
1868
+ 0
1869
+ 15
1870
+ 37
1871
+ 19
1872
+ 1
1873
+ 15
1874
+ 15
1875
+ 21
1876
+ 1
1877
+ 1
1878
+ 20
1879
+ 0
1880
+ 47
1881
+ 101
1882
+ 0
1883
+ 7
1884
+ 1
1885
+ 63
1886
+ 2
1887
+ 47
1888
+ 49
1889
+ 2
1890
+ 0
1891
+ 20
1892
+ 1
1893
+ 49
1894
+ 3
1895
+ 2
1896
+ 11
1897
+ I
1898
+ 6
1899
+ I
1900
+ 2
1901
+ I
1902
+ 2
1903
+ I
1904
+ 2
1905
+ n
1906
+ p
1907
+ 4
1908
+ x
1909
+ 4
1910
+ to_s
1911
+ s
1912
+ 1
1913
+ =
1914
+ x
1915
+ 6
1916
+ to_sym
1917
+ x
1918
+ 4
1919
+ send
1920
+ p
1921
+ 5
1922
+ I
1923
+ 0
1924
+ I
1925
+ 7b
1926
+ I
1927
+ a
1928
+ I
1929
+ 7c
1930
+ I
1931
+ 20
1932
+ x
1933
+ 59
1934
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
1935
+ p
1936
+ 2
1937
+ x
1938
+ 4
1939
+ name
1940
+ x
1941
+ 3
1942
+ val
1943
+ x
1944
+ 9
1945
+ each_pair
1946
+ x
1947
+ 6
1948
+ coerce
1949
+ M
1950
+ 1
1951
+ p
1952
+ 2
1953
+ x
1954
+ 9
1955
+ for_block
1956
+ t
1957
+ n
1958
+ x
1959
+ 10
1960
+ parse_args
1961
+ i
1962
+ 32
1963
+ 58
1964
+ 37
1965
+ 19
1966
+ 0
1967
+ 15
1968
+ 37
1969
+ 19
1970
+ 1
1971
+ 15
1972
+ 15
1973
+ 21
1974
+ 1
1975
+ 1
1976
+ 20
1977
+ 0
1978
+ 47
1979
+ 101
1980
+ 0
1981
+ 7
1982
+ 1
1983
+ 63
1984
+ 2
1985
+ 47
1986
+ 49
1987
+ 2
1988
+ 0
1989
+ 20
1990
+ 1
1991
+ 49
1992
+ 3
1993
+ 2
1994
+ 11
1995
+ I
1996
+ 6
1997
+ I
1998
+ 2
1999
+ I
2000
+ 2
2001
+ I
2002
+ 2
2003
+ n
2004
+ p
2005
+ 4
2006
+ x
2007
+ 4
2008
+ to_s
2009
+ s
2010
+ 1
2011
+ =
2012
+ x
2013
+ 6
2014
+ to_sym
2015
+ x
2016
+ 4
2017
+ send
2018
+ p
2019
+ 5
2020
+ I
2021
+ 0
2022
+ I
2023
+ 80
2024
+ I
2025
+ a
2026
+ I
2027
+ 81
2028
+ I
2029
+ 20
2030
+ x
2031
+ 59
2032
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2033
+ p
2034
+ 2
2035
+ x
2036
+ 4
2037
+ name
2038
+ x
2039
+ 3
2040
+ val
2041
+ x
2042
+ 9
2043
+ parse_xxx
2044
+ p
2045
+ 25
2046
+ I
2047
+ -1
2048
+ I
2049
+ 70
2050
+ I
2051
+ 0
2052
+ I
2053
+ 71
2054
+ I
2055
+ 1c
2056
+ I
2057
+ 0
2058
+ I
2059
+ 1d
2060
+ I
2061
+ 74
2062
+ I
2063
+ 23
2064
+ I
2065
+ 75
2066
+ I
2067
+ 35
2068
+ I
2069
+ 76
2070
+ I
2071
+ 4c
2072
+ I
2073
+ 0
2074
+ I
2075
+ 4d
2076
+ I
2077
+ 77
2078
+ I
2079
+ 5b
2080
+ I
2081
+ 75
2082
+ I
2083
+ 5c
2084
+ I
2085
+ 0
2086
+ I
2087
+ 5d
2088
+ I
2089
+ 7b
2090
+ I
2091
+ 65
2092
+ I
2093
+ 80
2094
+ I
2095
+ 71
2096
+ x
2097
+ 59
2098
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2099
+ p
2100
+ 3
2101
+ x
2102
+ 4
2103
+ args
2104
+ x
2105
+ 8
2106
+ receiver
2107
+ x
2108
+ 7
2109
+ optargs
2110
+ x
2111
+ 10
2112
+ parse_argv
2113
+ M
2114
+ 1
2115
+ n
2116
+ n
2117
+ x
2118
+ 10
2119
+ parse_argv
2120
+ i
2121
+ 70
2122
+ 45
2123
+ 0
2124
+ 1
2125
+ 20
2126
+ 0
2127
+ 49
2128
+ 2
2129
+ 1
2130
+ 19
2131
+ 0
2132
+ 15
2133
+ 5
2134
+ 48
2135
+ 3
2136
+ 56
2137
+ 4
2138
+ 50
2139
+ 5
2140
+ 0
2141
+ 15
2142
+ 20
2143
+ 0
2144
+ 78
2145
+ 5
2146
+ 20
2147
+ 1
2148
+ 47
2149
+ 49
2150
+ 6
2151
+ 1
2152
+ 20
2153
+ 0
2154
+ 78
2155
+ 49
2156
+ 7
2157
+ 1
2158
+ 49
2159
+ 8
2160
+ 1
2161
+ 13
2162
+ 18
2163
+ 3
2164
+ 49
2165
+ 9
2166
+ 2
2167
+ 15
2168
+ 15
2169
+ 20
2170
+ 0
2171
+ 49
2172
+ 10
2173
+ 0
2174
+ 19
2175
+ 2
2176
+ 15
2177
+ 5
2178
+ 20
2179
+ 0
2180
+ 7
2181
+ 11
2182
+ 56
2183
+ 12
2184
+ 47
2185
+ 50
2186
+ 13
2187
+ 2
2188
+ 15
2189
+ 20
2190
+ 2
2191
+ 11
2192
+ I
2193
+ 8
2194
+ I
2195
+ 3
2196
+ I
2197
+ 2
2198
+ I
2199
+ 2
2200
+ n
2201
+ p
2202
+ 14
2203
+ x
2204
+ 6
2205
+ Quickl
2206
+ n
2207
+ x
2208
+ 22
2209
+ split_commandline_args
2210
+ x
2211
+ 15
2212
+ default_options
2213
+ M
2214
+ 1
2215
+ p
2216
+ 2
2217
+ x
2218
+ 9
2219
+ for_block
2220
+ t
2221
+ n
2222
+ x
2223
+ 10
2224
+ parse_argv
2225
+ i
2226
+ 32
2227
+ 58
2228
+ 37
2229
+ 19
2230
+ 0
2231
+ 15
2232
+ 37
2233
+ 19
2234
+ 1
2235
+ 15
2236
+ 15
2237
+ 21
2238
+ 1
2239
+ 1
2240
+ 20
2241
+ 0
2242
+ 47
2243
+ 101
2244
+ 0
2245
+ 7
2246
+ 1
2247
+ 63
2248
+ 2
2249
+ 47
2250
+ 49
2251
+ 2
2252
+ 0
2253
+ 20
2254
+ 1
2255
+ 49
2256
+ 3
2257
+ 2
2258
+ 11
2259
+ I
2260
+ 6
2261
+ I
2262
+ 2
2263
+ I
2264
+ 2
2265
+ I
2266
+ 2
2267
+ n
2268
+ p
2269
+ 4
2270
+ x
2271
+ 4
2272
+ to_s
2273
+ s
2274
+ 1
2275
+ =
2276
+ x
2277
+ 6
2278
+ to_sym
2279
+ x
2280
+ 4
2281
+ send
2282
+ p
2283
+ 5
2284
+ I
2285
+ 0
2286
+ I
2287
+ 91
2288
+ I
2289
+ a
2290
+ I
2291
+ 92
2292
+ I
2293
+ 20
2294
+ x
2295
+ 59
2296
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2297
+ p
2298
+ 2
2299
+ x
2300
+ 4
2301
+ name
2302
+ x
2303
+ 3
2304
+ val
2305
+ x
2306
+ 9
2307
+ each_pair
2308
+ x
2309
+ 13
2310
+ option_parser
2311
+ x
2312
+ 2
2313
+ []
2314
+ x
2315
+ 6
2316
+ parse!
2317
+ x
2318
+ 3
2319
+ []=
2320
+ x
2321
+ 5
2322
+ shift
2323
+ x
2324
+ 9
2325
+ from_argv
2326
+ M
2327
+ 1
2328
+ p
2329
+ 2
2330
+ x
2331
+ 9
2332
+ for_block
2333
+ t
2334
+ n
2335
+ x
2336
+ 10
2337
+ parse_argv
2338
+ i
2339
+ 32
2340
+ 58
2341
+ 37
2342
+ 19
2343
+ 0
2344
+ 15
2345
+ 37
2346
+ 19
2347
+ 1
2348
+ 15
2349
+ 15
2350
+ 21
2351
+ 1
2352
+ 1
2353
+ 20
2354
+ 0
2355
+ 47
2356
+ 101
2357
+ 0
2358
+ 7
2359
+ 1
2360
+ 63
2361
+ 2
2362
+ 47
2363
+ 49
2364
+ 2
2365
+ 0
2366
+ 20
2367
+ 1
2368
+ 49
2369
+ 3
2370
+ 2
2371
+ 11
2372
+ I
2373
+ 6
2374
+ I
2375
+ 2
2376
+ I
2377
+ 2
2378
+ I
2379
+ 2
2380
+ n
2381
+ p
2382
+ 4
2383
+ x
2384
+ 4
2385
+ to_s
2386
+ s
2387
+ 1
2388
+ =
2389
+ x
2390
+ 6
2391
+ to_sym
2392
+ x
2393
+ 4
2394
+ send
2395
+ p
2396
+ 5
2397
+ I
2398
+ 0
2399
+ I
2400
+ 9a
2401
+ I
2402
+ a
2403
+ I
2404
+ 9b
2405
+ I
2406
+ 20
2407
+ x
2408
+ 59
2409
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2410
+ p
2411
+ 2
2412
+ x
2413
+ 4
2414
+ name
2415
+ x
2416
+ 3
2417
+ val
2418
+ x
2419
+ 9
2420
+ parse_xxx
2421
+ p
2422
+ 15
2423
+ I
2424
+ -1
2425
+ I
2426
+ 8c
2427
+ I
2428
+ 0
2429
+ I
2430
+ 8e
2431
+ I
2432
+ b
2433
+ I
2434
+ 91
2435
+ I
2436
+ 14
2437
+ I
2438
+ 94
2439
+ I
2440
+ 2f
2441
+ I
2442
+ 97
2443
+ I
2444
+ 37
2445
+ I
2446
+ 9a
2447
+ I
2448
+ 43
2449
+ I
2450
+ 9e
2451
+ I
2452
+ 46
2453
+ x
2454
+ 59
2455
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2456
+ p
2457
+ 3
2458
+ x
2459
+ 4
2460
+ argv
2461
+ x
2462
+ 8
2463
+ receiver
2464
+ x
2465
+ 8
2466
+ operands
2467
+ x
2468
+ 10
2469
+ collect_on
2470
+ M
2471
+ 1
2472
+ n
2473
+ n
2474
+ x
2475
+ 10
2476
+ collect_on
2477
+ i
2478
+ 68
2479
+ 20
2480
+ 0
2481
+ 49
2482
+ 0
2483
+ 0
2484
+ 19
2485
+ 1
2486
+ 15
2487
+ 20
2488
+ 1
2489
+ 45
2490
+ 1
2491
+ 2
2492
+ 49
2493
+ 3
2494
+ 1
2495
+ 9
2496
+ 21
2497
+ 1
2498
+ 8
2499
+ 27
2500
+ 20
2501
+ 1
2502
+ 35
2503
+ 1
2504
+ 19
2505
+ 1
2506
+ 15
2507
+ 5
2508
+ 48
2509
+ 4
2510
+ 56
2511
+ 5
2512
+ 50
2513
+ 6
2514
+ 0
2515
+ 19
2516
+ 2
2517
+ 15
2518
+ 45
2519
+ 7
2520
+ 8
2521
+ 5
2522
+ 48
2523
+ 9
2524
+ 56
2525
+ 10
2526
+ 50
2527
+ 6
2528
+ 0
2529
+ 49
2530
+ 11
2531
+ 0
2532
+ 49
2533
+ 12
2534
+ 1
2535
+ 19
2536
+ 3
2537
+ 15
2538
+ 20
2539
+ 1
2540
+ 20
2541
+ 2
2542
+ 20
2543
+ 3
2544
+ 35
2545
+ 3
2546
+ 11
2547
+ I
2548
+ 7
2549
+ I
2550
+ 4
2551
+ I
2552
+ 1
2553
+ I
2554
+ 1
2555
+ n
2556
+ p
2557
+ 13
2558
+ x
2559
+ 8
2560
+ datasets
2561
+ x
2562
+ 5
2563
+ Array
2564
+ n
2565
+ x
2566
+ 5
2567
+ is_a?
2568
+ x
2569
+ 9
2570
+ arguments
2571
+ M
2572
+ 1
2573
+ p
2574
+ 2
2575
+ x
2576
+ 9
2577
+ for_block
2578
+ t
2579
+ n
2580
+ x
2581
+ 10
2582
+ collect_on
2583
+ i
2584
+ 19
2585
+ 58
2586
+ 37
2587
+ 19
2588
+ 0
2589
+ 15
2590
+ 37
2591
+ 19
2592
+ 1
2593
+ 15
2594
+ 15
2595
+ 21
2596
+ 1
2597
+ 0
2598
+ 20
2599
+ 0
2600
+ 49
2601
+ 0
2602
+ 1
2603
+ 11
2604
+ I
2605
+ 5
2606
+ I
2607
+ 2
2608
+ I
2609
+ 2
2610
+ I
2611
+ 2
2612
+ n
2613
+ p
2614
+ 1
2615
+ x
2616
+ 4
2617
+ send
2618
+ p
2619
+ 3
2620
+ I
2621
+ 0
2622
+ I
2623
+ af
2624
+ I
2625
+ 13
2626
+ x
2627
+ 59
2628
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2629
+ p
2630
+ 2
2631
+ x
2632
+ 4
2633
+ name
2634
+ x
2635
+ 1
2636
+ _
2637
+ x
2638
+ 7
2639
+ collect
2640
+ x
2641
+ 4
2642
+ Hash
2643
+ n
2644
+ x
2645
+ 7
2646
+ options
2647
+ M
2648
+ 1
2649
+ p
2650
+ 2
2651
+ x
2652
+ 9
2653
+ for_block
2654
+ t
2655
+ n
2656
+ x
2657
+ 10
2658
+ collect_on
2659
+ i
2660
+ 47
2661
+ 58
2662
+ 37
2663
+ 19
2664
+ 0
2665
+ 15
2666
+ 37
2667
+ 19
2668
+ 1
2669
+ 15
2670
+ 37
2671
+ 19
2672
+ 2
2673
+ 15
2674
+ 37
2675
+ 19
2676
+ 3
2677
+ 15
2678
+ 15
2679
+ 21
2680
+ 1
2681
+ 0
2682
+ 20
2683
+ 0
2684
+ 49
2685
+ 0
2686
+ 1
2687
+ 19
2688
+ 4
2689
+ 15
2690
+ 20
2691
+ 4
2692
+ 20
2693
+ 2
2694
+ 83
2695
+ 1
2696
+ 9
2697
+ 40
2698
+ 1
2699
+ 8
2700
+ 46
2701
+ 20
2702
+ 0
2703
+ 20
2704
+ 4
2705
+ 35
2706
+ 2
2707
+ 11
2708
+ I
2709
+ 8
2710
+ I
2711
+ 5
2712
+ I
2713
+ 4
2714
+ I
2715
+ 4
2716
+ n
2717
+ p
2718
+ 2
2719
+ x
2720
+ 4
2721
+ send
2722
+ x
2723
+ 2
2724
+ ==
2725
+ p
2726
+ 9
2727
+ I
2728
+ 0
2729
+ I
2730
+ b0
2731
+ I
2732
+ 12
2733
+ I
2734
+ b1
2735
+ I
2736
+ 1d
2737
+ I
2738
+ b2
2739
+ I
2740
+ 2e
2741
+ I
2742
+ 0
2743
+ I
2744
+ 2f
2745
+ x
2746
+ 59
2747
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2748
+ p
2749
+ 5
2750
+ x
2751
+ 4
2752
+ name
2753
+ x
2754
+ 3
2755
+ dom
2756
+ x
2757
+ 4
2758
+ defa
2759
+ x
2760
+ 1
2761
+ _
2762
+ x
2763
+ 3
2764
+ val
2765
+ x
2766
+ 7
2767
+ compact
2768
+ x
2769
+ 2
2770
+ []
2771
+ p
2772
+ 15
2773
+ I
2774
+ -1
2775
+ I
2776
+ ac
2777
+ I
2778
+ 0
2779
+ I
2780
+ ad
2781
+ I
2782
+ 8
2783
+ I
2784
+ ae
2785
+ I
2786
+ 1b
2787
+ I
2788
+ 0
2789
+ I
2790
+ 1c
2791
+ I
2792
+ af
2793
+ I
2794
+ 27
2795
+ I
2796
+ b0
2797
+ I
2798
+ 3b
2799
+ I
2800
+ b4
2801
+ I
2802
+ 44
2803
+ x
2804
+ 59
2805
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
2806
+ p
2807
+ 4
2808
+ x
2809
+ 2
2810
+ op
2811
+ x
2812
+ 4
2813
+ oper
2814
+ x
2815
+ 4
2816
+ args
2817
+ x
2818
+ 4
2819
+ opts
2820
+ x
2821
+ 8
2822
+ to_lispy
2823
+ M
2824
+ 1
2825
+ n
2826
+ n
2827
+ x
2828
+ 8
2829
+ to_lispy
2830
+ i
2831
+ 194
2832
+ 5
2833
+ 48
2834
+ 0
2835
+ 49
2836
+ 1
2837
+ 0
2838
+ 49
2839
+ 2
2840
+ 0
2841
+ 7
2842
+ 3
2843
+ 64
2844
+ 7
2845
+ 4
2846
+ 64
2847
+ 49
2848
+ 5
2849
+ 2
2850
+ 19
2851
+ 0
2852
+ 15
2853
+ 5
2854
+ 48
2855
+ 0
2856
+ 49
2857
+ 6
2858
+ 0
2859
+ 9
2860
+ 34
2861
+ 7
2862
+ 7
2863
+ 64
2864
+ 8
2865
+ 50
2866
+ 5
2867
+ 48
2868
+ 0
2869
+ 49
2870
+ 8
2871
+ 0
2872
+ 9
2873
+ 47
2874
+ 7
2875
+ 9
2876
+ 64
2877
+ 8
2878
+ 50
2879
+ 7
2880
+ 10
2881
+ 64
2882
+ 19
2883
+ 1
2884
+ 15
2885
+ 5
2886
+ 48
2887
+ 11
2888
+ 56
2889
+ 12
2890
+ 50
2891
+ 13
2892
+ 0
2893
+ 7
2894
+ 14
2895
+ 64
2896
+ 49
2897
+ 15
2898
+ 1
2899
+ 19
2900
+ 2
2901
+ 15
2902
+ 20
2903
+ 2
2904
+ 49
2905
+ 16
2906
+ 0
2907
+ 9
2908
+ 86
2909
+ 20
2910
+ 1
2911
+ 47
2912
+ 101
2913
+ 2
2914
+ 63
2915
+ 1
2916
+ 8
2917
+ 100
2918
+ 20
2919
+ 1
2920
+ 47
2921
+ 101
2922
+ 2
2923
+ 7
2924
+ 14
2925
+ 20
2926
+ 2
2927
+ 47
2928
+ 101
2929
+ 2
2930
+ 63
2931
+ 3
2932
+ 49
2933
+ 17
2934
+ 0
2935
+ 19
2936
+ 2
2937
+ 15
2938
+ 5
2939
+ 48
2940
+ 18
2941
+ 56
2942
+ 19
2943
+ 50
2944
+ 13
2945
+ 0
2946
+ 7
2947
+ 14
2948
+ 64
2949
+ 49
2950
+ 15
2951
+ 1
2952
+ 19
2953
+ 3
2954
+ 15
2955
+ 20
2956
+ 3
2957
+ 49
2958
+ 16
2959
+ 0
2960
+ 9
2961
+ 135
2962
+ 7
2963
+ 7
2964
+ 64
2965
+ 8
2966
+ 146
2967
+ 7
2968
+ 20
2969
+ 20
2970
+ 3
2971
+ 47
2972
+ 101
2973
+ 2
2974
+ 7
2975
+ 21
2976
+ 63
2977
+ 3
2978
+ 19
2979
+ 3
2980
+ 15
2981
+ 20
2982
+ 2
2983
+ 20
2984
+ 3
2985
+ 35
2986
+ 2
2987
+ 56
2988
+ 22
2989
+ 50
2990
+ 23
2991
+ 0
2992
+ 7
2993
+ 14
2994
+ 64
2995
+ 49
2996
+ 15
2997
+ 1
2998
+ 19
2999
+ 4
3000
+ 15
3001
+ 7
3002
+ 24
3003
+ 20
3004
+ 0
3005
+ 47
3006
+ 101
3007
+ 2
3008
+ 7
3009
+ 25
3010
+ 20
3011
+ 4
3012
+ 47
3013
+ 101
3014
+ 2
3015
+ 63
3016
+ 4
3017
+ 49
3018
+ 17
3019
+ 0
3020
+ 7
3021
+ 26
3022
+ 64
3023
+ 81
3024
+ 27
3025
+ 11
3026
+ I
3027
+ 9
3028
+ I
3029
+ 5
3030
+ I
3031
+ 0
3032
+ I
3033
+ 0
3034
+ n
3035
+ p
3036
+ 28
3037
+ x
3038
+ 8
3039
+ operator
3040
+ x
3041
+ 12
3042
+ command_name
3043
+ x
3044
+ 4
3045
+ to_s
3046
+ s
3047
+ 1
3048
+ -
3049
+ s
3050
+ 1
3051
+ _
3052
+ x
3053
+ 4
3054
+ gsub
3055
+ x
3056
+ 8
3057
+ nullary?
3058
+ s
3059
+ 0
3060
+
3061
+ x
3062
+ 6
3063
+ unary?
3064
+ s
3065
+ 7
3066
+ operand
3067
+ s
3068
+ 11
3069
+ left, right
3070
+ x
3071
+ 9
3072
+ arguments
3073
+ M
3074
+ 1
3075
+ p
3076
+ 2
3077
+ x
3078
+ 9
3079
+ for_block
3080
+ t
3081
+ n
3082
+ x
3083
+ 8
3084
+ to_lispy
3085
+ i
3086
+ 60
3087
+ 58
3088
+ 37
3089
+ 19
3090
+ 0
3091
+ 15
3092
+ 37
3093
+ 19
3094
+ 1
3095
+ 15
3096
+ 37
3097
+ 19
3098
+ 2
3099
+ 15
3100
+ 15
3101
+ 20
3102
+ 1
3103
+ 49
3104
+ 0
3105
+ 0
3106
+ 7
3107
+ 1
3108
+ 13
3109
+ 70
3110
+ 9
3111
+ 37
3112
+ 15
3113
+ 44
3114
+ 43
3115
+ 2
3116
+ 7
3117
+ 3
3118
+ 78
3119
+ 49
3120
+ 4
3121
+ 2
3122
+ 6
3123
+ 1
3124
+ 49
3125
+ 5
3126
+ 1
3127
+ 15
3128
+ 20
3129
+ 0
3130
+ 47
3131
+ 101
3132
+ 0
3133
+ 7
3134
+ 6
3135
+ 4
3136
+ 5
3137
+ 78
3138
+ 98
3139
+ 7
3140
+ 2
3141
+ 47
3142
+ 101
3143
+ 0
3144
+ 63
3145
+ 3
3146
+ 11
3147
+ I
3148
+ 8
3149
+ I
3150
+ 3
3151
+ I
3152
+ 3
3153
+ I
3154
+ 3
3155
+ n
3156
+ p
3157
+ 8
3158
+ x
3159
+ 4
3160
+ to_s
3161
+ n
3162
+ x
3163
+ 6
3164
+ Regexp
3165
+ s
3166
+ 14
3167
+ ::([A-Za-z]+)$
3168
+ x
3169
+ 3
3170
+ new
3171
+ x
3172
+ 2
3173
+ =~
3174
+ s
3175
+ 1
3176
+ :
3177
+ x
3178
+ 24
3179
+ regexp_last_match_result
3180
+ p
3181
+ 7
3182
+ I
3183
+ 0
3184
+ I
3185
+ c4
3186
+ I
3187
+ e
3188
+ I
3189
+ c5
3190
+ I
3191
+ 29
3192
+ I
3193
+ c6
3194
+ I
3195
+ 3c
3196
+ x
3197
+ 59
3198
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3199
+ p
3200
+ 3
3201
+ x
3202
+ 4
3203
+ name
3204
+ x
3205
+ 3
3206
+ dom
3207
+ x
3208
+ 1
3209
+ _
3210
+ x
3211
+ 7
3212
+ collect
3213
+ s
3214
+ 2
3215
+ ,
3216
+ x
3217
+ 4
3218
+ join
3219
+ x
3220
+ 6
3221
+ empty?
3222
+ x
3223
+ 5
3224
+ strip
3225
+ x
3226
+ 7
3227
+ options
3228
+ M
3229
+ 1
3230
+ p
3231
+ 2
3232
+ x
3233
+ 9
3234
+ for_block
3235
+ t
3236
+ n
3237
+ x
3238
+ 8
3239
+ to_lispy
3240
+ i
3241
+ 60
3242
+ 58
3243
+ 37
3244
+ 19
3245
+ 0
3246
+ 15
3247
+ 37
3248
+ 19
3249
+ 1
3250
+ 15
3251
+ 37
3252
+ 19
3253
+ 2
3254
+ 15
3255
+ 15
3256
+ 20
3257
+ 1
3258
+ 49
3259
+ 0
3260
+ 0
3261
+ 7
3262
+ 1
3263
+ 13
3264
+ 70
3265
+ 9
3266
+ 37
3267
+ 15
3268
+ 44
3269
+ 43
3270
+ 2
3271
+ 7
3272
+ 3
3273
+ 78
3274
+ 49
3275
+ 4
3276
+ 2
3277
+ 6
3278
+ 1
3279
+ 49
3280
+ 5
3281
+ 1
3282
+ 15
3283
+ 20
3284
+ 0
3285
+ 47
3286
+ 101
3287
+ 0
3288
+ 7
3289
+ 6
3290
+ 4
3291
+ 5
3292
+ 78
3293
+ 98
3294
+ 7
3295
+ 2
3296
+ 47
3297
+ 101
3298
+ 0
3299
+ 63
3300
+ 3
3301
+ 11
3302
+ I
3303
+ 8
3304
+ I
3305
+ 3
3306
+ I
3307
+ 3
3308
+ I
3309
+ 3
3310
+ n
3311
+ p
3312
+ 8
3313
+ x
3314
+ 4
3315
+ to_s
3316
+ n
3317
+ x
3318
+ 6
3319
+ Regexp
3320
+ s
3321
+ 14
3322
+ ::([A-Za-z]+)$
3323
+ x
3324
+ 3
3325
+ new
3326
+ x
3327
+ 2
3328
+ =~
3329
+ s
3330
+ 2
3331
+ :
3332
+ x
3333
+ 24
3334
+ regexp_last_match_result
3335
+ p
3336
+ 7
3337
+ I
3338
+ 0
3339
+ I
3340
+ ca
3341
+ I
3342
+ e
3343
+ I
3344
+ cb
3345
+ I
3346
+ 29
3347
+ I
3348
+ cc
3349
+ I
3350
+ 3c
3351
+ x
3352
+ 59
3353
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3354
+ p
3355
+ 3
3356
+ x
3357
+ 4
3358
+ name
3359
+ x
3360
+ 3
3361
+ dom
3362
+ x
3363
+ 1
3364
+ _
3365
+ s
3366
+ 1
3367
+ {
3368
+ s
3369
+ 1
3370
+ }
3371
+ M
3372
+ 1
3373
+ p
3374
+ 2
3375
+ x
3376
+ 9
3377
+ for_block
3378
+ t
3379
+ n
3380
+ x
3381
+ 8
3382
+ to_lispy
3383
+ i
3384
+ 16
3385
+ 57
3386
+ 19
3387
+ 0
3388
+ 15
3389
+ 20
3390
+ 0
3391
+ 49
3392
+ 0
3393
+ 0
3394
+ 10
3395
+ 14
3396
+ 2
3397
+ 8
3398
+ 15
3399
+ 3
3400
+ 11
3401
+ I
3402
+ 3
3403
+ I
3404
+ 1
3405
+ I
3406
+ 1
3407
+ I
3408
+ 1
3409
+ n
3410
+ p
3411
+ 1
3412
+ x
3413
+ 6
3414
+ empty?
3415
+ p
3416
+ 3
3417
+ I
3418
+ 0
3419
+ I
3420
+ d0
3421
+ I
3422
+ 10
3423
+ x
3424
+ 59
3425
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3426
+ p
3427
+ 1
3428
+ x
3429
+ 1
3430
+ s
3431
+ x
3432
+ 6
3433
+ select
3434
+ s
3435
+ 1
3436
+ (
3437
+ s
3438
+ 1
3439
+
3440
+ s
3441
+ 1
3442
+ )
3443
+ x
3444
+ 1
3445
+ +
3446
+ p
3447
+ 37
3448
+ I
3449
+ -1
3450
+ I
3451
+ bf
3452
+ I
3453
+ 0
3454
+ I
3455
+ c0
3456
+ I
3457
+ 15
3458
+ I
3459
+ c1
3460
+ I
3461
+ 22
3462
+ I
3463
+ c2
3464
+ I
3465
+ 32
3466
+ I
3467
+ c1
3468
+ I
3469
+ 35
3470
+ I
3471
+ c4
3472
+ I
3473
+ 3d
3474
+ I
3475
+ c7
3476
+ I
3477
+ 40
3478
+ I
3479
+ c4
3480
+ I
3481
+ 46
3482
+ I
3483
+ c8
3484
+ I
3485
+ 64
3486
+ I
3487
+ 0
3488
+ I
3489
+ 67
3490
+ I
3491
+ c8
3492
+ I
3493
+ 6a
3494
+ I
3495
+ ca
3496
+ I
3497
+ 72
3498
+ I
3499
+ cd
3500
+ I
3501
+ 75
3502
+ I
3503
+ ca
3504
+ I
3505
+ 7b
3506
+ I
3507
+ ce
3508
+ I
3509
+ 92
3510
+ I
3511
+ ce
3512
+ I
3513
+ 95
3514
+ I
3515
+ d0
3516
+ I
3517
+ a9
3518
+ I
3519
+ d1
3520
+ I
3521
+ c2
3522
+ x
3523
+ 59
3524
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3525
+ p
3526
+ 5
3527
+ x
3528
+ 3
3529
+ cmd
3530
+ x
3531
+ 4
3532
+ oper
3533
+ x
3534
+ 4
3535
+ args
3536
+ x
3537
+ 4
3538
+ opts
3539
+ x
3540
+ 6
3541
+ argopt
3542
+ x
3543
+ 8
3544
+ to_shell
3545
+ M
3546
+ 1
3547
+ n
3548
+ n
3549
+ x
3550
+ 8
3551
+ to_shell
3552
+ i
3553
+ 135
3554
+ 5
3555
+ 48
3556
+ 0
3557
+ 49
3558
+ 1
3559
+ 0
3560
+ 9
3561
+ 13
3562
+ 7
3563
+ 2
3564
+ 64
3565
+ 8
3566
+ 29
3567
+ 5
3568
+ 48
3569
+ 0
3570
+ 49
3571
+ 3
3572
+ 0
3573
+ 9
3574
+ 26
3575
+ 7
3576
+ 4
3577
+ 64
3578
+ 8
3579
+ 29
3580
+ 7
3581
+ 5
3582
+ 64
3583
+ 19
3584
+ 0
3585
+ 15
3586
+ 5
3587
+ 48
3588
+ 6
3589
+ 56
3590
+ 7
3591
+ 50
3592
+ 8
3593
+ 0
3594
+ 7
3595
+ 9
3596
+ 64
3597
+ 49
3598
+ 10
3599
+ 1
3600
+ 19
3601
+ 1
3602
+ 15
3603
+ 5
3604
+ 48
3605
+ 11
3606
+ 56
3607
+ 12
3608
+ 50
3609
+ 8
3610
+ 0
3611
+ 7
3612
+ 13
3613
+ 64
3614
+ 49
3615
+ 10
3616
+ 1
3617
+ 19
3618
+ 2
3619
+ 15
3620
+ 20
3621
+ 1
3622
+ 47
3623
+ 101
3624
+ 14
3625
+ 7
3626
+ 9
3627
+ 20
3628
+ 0
3629
+ 47
3630
+ 101
3631
+ 14
3632
+ 7
3633
+ 9
3634
+ 63
3635
+ 4
3636
+ 20
3637
+ 2
3638
+ 49
3639
+ 15
3640
+ 0
3641
+ 9
3642
+ 94
3643
+ 7
3644
+ 2
3645
+ 64
3646
+ 8
3647
+ 103
3648
+ 7
3649
+ 16
3650
+ 20
3651
+ 2
3652
+ 47
3653
+ 101
3654
+ 14
3655
+ 63
3656
+ 2
3657
+ 81
3658
+ 17
3659
+ 19
3660
+ 3
3661
+ 15
3662
+ 7
3663
+ 18
3664
+ 5
3665
+ 48
3666
+ 0
3667
+ 49
3668
+ 19
3669
+ 0
3670
+ 47
3671
+ 101
3672
+ 14
3673
+ 7
3674
+ 9
3675
+ 20
3676
+ 3
3677
+ 49
3678
+ 20
3679
+ 0
3680
+ 47
3681
+ 101
3682
+ 14
3683
+ 63
3684
+ 4
3685
+ 49
3686
+ 20
3687
+ 0
3688
+ 11
3689
+ I
3690
+ 8
3691
+ I
3692
+ 4
3693
+ I
3694
+ 0
3695
+ I
3696
+ 0
3697
+ n
3698
+ p
3699
+ 21
3700
+ x
3701
+ 8
3702
+ operator
3703
+ x
3704
+ 8
3705
+ nullary?
3706
+ s
3707
+ 0
3708
+
3709
+ x
3710
+ 6
3711
+ unary?
3712
+ s
3713
+ 9
3714
+ [OPERAND]
3715
+ s
3716
+ 12
3717
+ [LEFT] RIGHT
3718
+ x
3719
+ 7
3720
+ options
3721
+ M
3722
+ 1
3723
+ p
3724
+ 2
3725
+ x
3726
+ 9
3727
+ for_block
3728
+ t
3729
+ n
3730
+ x
3731
+ 8
3732
+ to_shell
3733
+ i
3734
+ 21
3735
+ 57
3736
+ 19
3737
+ 0
3738
+ 15
3739
+ 7
3740
+ 0
3741
+ 5
3742
+ 20
3743
+ 0
3744
+ 47
3745
+ 49
3746
+ 1
3747
+ 1
3748
+ 47
3749
+ 101
3750
+ 2
3751
+ 7
3752
+ 3
3753
+ 63
3754
+ 3
3755
+ 11
3756
+ I
3757
+ 5
3758
+ I
3759
+ 1
3760
+ I
3761
+ 1
3762
+ I
3763
+ 1
3764
+ n
3765
+ p
3766
+ 4
3767
+ s
3768
+ 1
3769
+ [
3770
+ x
3771
+ 11
3772
+ option_name
3773
+ x
3774
+ 4
3775
+ to_s
3776
+ s
3777
+ 1
3778
+ ]
3779
+ p
3780
+ 3
3781
+ I
3782
+ 0
3783
+ I
3784
+ df
3785
+ I
3786
+ 15
3787
+ x
3788
+ 59
3789
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3790
+ p
3791
+ 1
3792
+ x
3793
+ 3
3794
+ opt
3795
+ x
3796
+ 7
3797
+ collect
3798
+ s
3799
+ 1
3800
+
3801
+ x
3802
+ 4
3803
+ join
3804
+ x
3805
+ 9
3806
+ arguments
3807
+ M
3808
+ 1
3809
+ p
3810
+ 2
3811
+ x
3812
+ 9
3813
+ for_block
3814
+ t
3815
+ n
3816
+ x
3817
+ 8
3818
+ to_shell
3819
+ i
3820
+ 24
3821
+ 58
3822
+ 37
3823
+ 19
3824
+ 0
3825
+ 15
3826
+ 37
3827
+ 19
3828
+ 1
3829
+ 15
3830
+ 15
3831
+ 20
3832
+ 0
3833
+ 49
3834
+ 0
3835
+ 0
3836
+ 49
3837
+ 1
3838
+ 0
3839
+ 47
3840
+ 101
3841
+ 0
3842
+ 63
3843
+ 1
3844
+ 11
3845
+ I
3846
+ 5
3847
+ I
3848
+ 2
3849
+ I
3850
+ 2
3851
+ I
3852
+ 2
3853
+ n
3854
+ p
3855
+ 2
3856
+ x
3857
+ 4
3858
+ to_s
3859
+ x
3860
+ 6
3861
+ upcase
3862
+ p
3863
+ 3
3864
+ I
3865
+ 0
3866
+ I
3867
+ e0
3868
+ I
3869
+ 18
3870
+ x
3871
+ 59
3872
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3873
+ p
3874
+ 2
3875
+ x
3876
+ 3
3877
+ arg
3878
+ x
3879
+ 1
3880
+ _
3881
+ s
3882
+ 4
3883
+ --
3884
+ x
3885
+ 4
3886
+ to_s
3887
+ x
3888
+ 6
3889
+ empty?
3890
+ s
3891
+ 3
3892
+ --
3893
+ x
3894
+ 1
3895
+ +
3896
+ s
3897
+ 4
3898
+ alf
3899
+ x
3900
+ 12
3901
+ command_name
3902
+ x
3903
+ 5
3904
+ strip
3905
+ p
3906
+ 21
3907
+ I
3908
+ -1
3909
+ I
3910
+ dc
3911
+ I
3912
+ 0
3913
+ I
3914
+ dd
3915
+ I
3916
+ d
3917
+ I
3918
+ de
3919
+ I
3920
+ 1d
3921
+ I
3922
+ dd
3923
+ I
3924
+ 20
3925
+ I
3926
+ df
3927
+ I
3928
+ 31
3929
+ I
3930
+ e0
3931
+ I
3932
+ 42
3933
+ I
3934
+ e1
3935
+ I
3936
+ 67
3937
+ I
3938
+ 0
3939
+ I
3940
+ 69
3941
+ I
3942
+ e1
3943
+ I
3944
+ 6c
3945
+ I
3946
+ e2
3947
+ I
3948
+ 87
3949
+ x
3950
+ 59
3951
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
3952
+ p
3953
+ 4
3954
+ x
3955
+ 4
3956
+ oper
3957
+ x
3958
+ 4
3959
+ opts
3960
+ x
3961
+ 4
3962
+ args
3963
+ x
3964
+ 7
3965
+ optargs
3966
+ x
3967
+ 7
3968
+ private
3969
+ x
3970
+ 11
3971
+ option_name
3972
+ M
3973
+ 1
3974
+ n
3975
+ n
3976
+ x
3977
+ 11
3978
+ option_name
3979
+ i
3980
+ 61
3981
+ 20
3982
+ 0
3983
+ 97
3984
+ 37
3985
+ 19
3986
+ 1
3987
+ 15
3988
+ 37
3989
+ 19
3990
+ 2
3991
+ 15
3992
+ 37
3993
+ 19
3994
+ 3
3995
+ 15
3996
+ 15
3997
+ 2
3998
+ 15
3999
+ 20
4000
+ 2
4001
+ 45
4002
+ 0
4003
+ 1
4004
+ 83
4005
+ 2
4006
+ 9
4007
+ 38
4008
+ 7
4009
+ 3
4010
+ 20
4011
+ 1
4012
+ 47
4013
+ 101
4014
+ 4
4015
+ 63
4016
+ 2
4017
+ 8
4018
+ 60
4019
+ 7
4020
+ 3
4021
+ 20
4022
+ 1
4023
+ 47
4024
+ 101
4025
+ 4
4026
+ 7
4027
+ 5
4028
+ 20
4029
+ 1
4030
+ 49
4031
+ 4
4032
+ 0
4033
+ 49
4034
+ 6
4035
+ 0
4036
+ 47
4037
+ 101
4038
+ 4
4039
+ 63
4040
+ 4
4041
+ 11
4042
+ I
4043
+ 8
4044
+ I
4045
+ 4
4046
+ I
4047
+ 1
4048
+ I
4049
+ 1
4050
+ n
4051
+ p
4052
+ 7
4053
+ x
4054
+ 7
4055
+ Boolean
4056
+ n
4057
+ x
4058
+ 2
4059
+ ==
4060
+ s
4061
+ 2
4062
+ --
4063
+ x
4064
+ 4
4065
+ to_s
4066
+ s
4067
+ 1
4068
+ =
4069
+ x
4070
+ 6
4071
+ upcase
4072
+ p
4073
+ 9
4074
+ I
4075
+ -1
4076
+ I
4077
+ e7
4078
+ I
4079
+ 0
4080
+ I
4081
+ e8
4082
+ I
4083
+ 12
4084
+ I
4085
+ e9
4086
+ I
4087
+ 3c
4088
+ I
4089
+ 0
4090
+ I
4091
+ 3d
4092
+ x
4093
+ 59
4094
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4095
+ p
4096
+ 4
4097
+ x
4098
+ 6
4099
+ option
4100
+ x
4101
+ 4
4102
+ name
4103
+ x
4104
+ 6
4105
+ domain
4106
+ x
4107
+ 4
4108
+ defa
4109
+ x
4110
+ 9
4111
+ parse_xxx
4112
+ M
4113
+ 1
4114
+ n
4115
+ n
4116
+ x
4117
+ 9
4118
+ parse_xxx
4119
+ i
4120
+ 14
4121
+ 5
4122
+ 48
4123
+ 0
4124
+ 20
4125
+ 0
4126
+ 49
4127
+ 1
4128
+ 1
4129
+ 56
4130
+ 2
4131
+ 50
4132
+ 3
4133
+ 0
4134
+ 11
4135
+ I
4136
+ 4
4137
+ I
4138
+ 2
4139
+ I
4140
+ 2
4141
+ I
4142
+ 2
4143
+ n
4144
+ p
4145
+ 4
4146
+ x
4147
+ 9
4148
+ arguments
4149
+ x
4150
+ 3
4151
+ zip
4152
+ M
4153
+ 1
4154
+ p
4155
+ 2
4156
+ x
4157
+ 9
4158
+ for_block
4159
+ t
4160
+ n
4161
+ x
4162
+ 9
4163
+ parse_xxx
4164
+ i
4165
+ 111
4166
+ 58
4167
+ 37
4168
+ 19
4169
+ 0
4170
+ 15
4171
+ 37
4172
+ 19
4173
+ 1
4174
+ 15
4175
+ 15
4176
+ 20
4177
+ 0
4178
+ 97
4179
+ 37
4180
+ 19
4181
+ 2
4182
+ 15
4183
+ 37
4184
+ 19
4185
+ 3
4186
+ 15
4187
+ 37
4188
+ 19
4189
+ 4
4190
+ 15
4191
+ 15
4192
+ 2
4193
+ 15
4194
+ 5
4195
+ 20
4196
+ 1
4197
+ 47
4198
+ 49
4199
+ 0
4200
+ 1
4201
+ 49
4202
+ 1
4203
+ 0
4204
+ 9
4205
+ 52
4206
+ 45
4207
+ 2
4208
+ 3
4209
+ 20
4210
+ 4
4211
+ 20
4212
+ 3
4213
+ 49
4214
+ 4
4215
+ 2
4216
+ 8
4217
+ 62
4218
+ 20
4219
+ 3
4220
+ 21
4221
+ 1
4222
+ 1
4223
+ 20
4224
+ 1
4225
+ 49
4226
+ 5
4227
+ 2
4228
+ 19
4229
+ 5
4230
+ 15
4231
+ 20
4232
+ 5
4233
+ 49
4234
+ 6
4235
+ 0
4236
+ 9
4237
+ 104
4238
+ 5
4239
+ 45
4240
+ 7
4241
+ 8
4242
+ 7
4243
+ 9
4244
+ 20
4245
+ 1
4246
+ 49
4247
+ 10
4248
+ 0
4249
+ 47
4250
+ 101
4251
+ 11
4252
+ 7
4253
+ 12
4254
+ 20
4255
+ 0
4256
+ 49
4257
+ 10
4258
+ 0
4259
+ 47
4260
+ 101
4261
+ 11
4262
+ 63
4263
+ 4
4264
+ 47
4265
+ 49
4266
+ 13
4267
+ 2
4268
+ 8
4269
+ 110
4270
+ 20
4271
+ 2
4272
+ 20
4273
+ 5
4274
+ 60
4275
+ 2
4276
+ 11
4277
+ I
4278
+ d
4279
+ I
4280
+ 6
4281
+ I
4282
+ 2
4283
+ I
4284
+ 2
4285
+ n
4286
+ p
4287
+ 14
4288
+ x
4289
+ 5
4290
+ Array
4291
+ x
4292
+ 6
4293
+ empty?
4294
+ x
4295
+ 5
4296
+ Tools
4297
+ n
4298
+ x
4299
+ 6
4300
+ coerce
4301
+ x
4302
+ 4
4303
+ send
4304
+ x
4305
+ 4
4306
+ nil?
4307
+ x
4308
+ 13
4309
+ ArgumentError
4310
+ n
4311
+ s
4312
+ 9
4313
+ Invalid `
4314
+ x
4315
+ 7
4316
+ inspect
4317
+ x
4318
+ 4
4319
+ to_s
4320
+ s
4321
+ 6
4322
+ ` for
4323
+ x
4324
+ 5
4325
+ raise
4326
+ p
4327
+ 21
4328
+ I
4329
+ 0
4330
+ I
4331
+ ed
4332
+ I
4333
+ a
4334
+ I
4335
+ ee
4336
+ I
4337
+ 1c
4338
+ I
4339
+ f1
4340
+ I
4341
+ 28
4342
+ I
4343
+ f2
4344
+ I
4345
+ 34
4346
+ I
4347
+ f4
4348
+ I
4349
+ 3e
4350
+ I
4351
+ f1
4352
+ I
4353
+ 41
4354
+ I
4355
+ f8
4356
+ I
4357
+ 48
4358
+ I
4359
+ f9
4360
+ I
4361
+ 68
4362
+ I
4363
+ fb
4364
+ I
4365
+ 6e
4366
+ I
4367
+ 0
4368
+ I
4369
+ 6f
4370
+ x
4371
+ 59
4372
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4373
+ p
4374
+ 6
4375
+ x
4376
+ 7
4377
+ sigpart
4378
+ x
4379
+ 7
4380
+ subargs
4381
+ x
4382
+ 4
4383
+ name
4384
+ x
4385
+ 3
4386
+ dom
4387
+ x
4388
+ 7
4389
+ default
4390
+ x
4391
+ 3
4392
+ val
4393
+ x
4394
+ 7
4395
+ collect
4396
+ p
4397
+ 5
4398
+ I
4399
+ -1
4400
+ I
4401
+ ec
4402
+ I
4403
+ 0
4404
+ I
4405
+ ed
4406
+ I
4407
+ e
4408
+ x
4409
+ 59
4410
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4411
+ p
4412
+ 2
4413
+ x
4414
+ 4
4415
+ args
4416
+ x
4417
+ 7
4418
+ coercer
4419
+ x
4420
+ 13
4421
+ invalid_args!
4422
+ M
4423
+ 1
4424
+ n
4425
+ n
4426
+ x
4427
+ 13
4428
+ invalid_args!
4429
+ i
4430
+ 27
4431
+ 5
4432
+ 45
4433
+ 0
4434
+ 1
4435
+ 7
4436
+ 2
4437
+ 20
4438
+ 0
4439
+ 49
4440
+ 3
4441
+ 0
4442
+ 47
4443
+ 101
4444
+ 4
4445
+ 7
4446
+ 5
4447
+ 5
4448
+ 47
4449
+ 101
4450
+ 4
4451
+ 63
4452
+ 4
4453
+ 47
4454
+ 49
4455
+ 6
4456
+ 2
4457
+ 11
4458
+ I
4459
+ 7
4460
+ I
4461
+ 1
4462
+ I
4463
+ 1
4464
+ I
4465
+ 1
4466
+ n
4467
+ p
4468
+ 7
4469
+ x
4470
+ 13
4471
+ ArgumentError
4472
+ n
4473
+ s
4474
+ 9
4475
+ Invalid `
4476
+ x
4477
+ 7
4478
+ inspect
4479
+ x
4480
+ 4
4481
+ to_s
4482
+ s
4483
+ 6
4484
+ ` for
4485
+ x
4486
+ 5
4487
+ raise
4488
+ p
4489
+ 5
4490
+ I
4491
+ -1
4492
+ I
4493
+ 100
4494
+ I
4495
+ 0
4496
+ I
4497
+ 101
4498
+ I
4499
+ 1b
4500
+ x
4501
+ 59
4502
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4503
+ p
4504
+ 1
4505
+ x
4506
+ 4
4507
+ args
4508
+ p
4509
+ 39
4510
+ I
4511
+ 2
4512
+ I
4513
+ 7
4514
+ I
4515
+ a
4516
+ I
4517
+ a
4518
+ I
4519
+ 12
4520
+ I
4521
+ d
4522
+ I
4523
+ 1a
4524
+ I
4525
+ 12
4526
+ I
4527
+ 28
4528
+ I
4529
+ 20
4530
+ I
4531
+ 36
4532
+ I
4533
+ 2b
4534
+ I
4535
+ 44
4536
+ I
4537
+ 34
4538
+ I
4539
+ 52
4540
+ I
4541
+ 40
4542
+ I
4543
+ 60
4544
+ I
4545
+ 50
4546
+ I
4547
+ 6e
4548
+ I
4549
+ 5c
4550
+ I
4551
+ 7c
4552
+ I
4553
+ 70
4554
+ I
4555
+ 8a
4556
+ I
4557
+ 8c
4558
+ I
4559
+ 98
4560
+ I
4561
+ ac
4562
+ I
4563
+ a6
4564
+ I
4565
+ bf
4566
+ I
4567
+ b4
4568
+ I
4569
+ dc
4570
+ I
4571
+ c2
4572
+ I
4573
+ e5
4574
+ I
4575
+ c6
4576
+ I
4577
+ e7
4578
+ I
4579
+ d4
4580
+ I
4581
+ ec
4582
+ I
4583
+ e2
4584
+ I
4585
+ 100
4586
+ I
4587
+ f0
4588
+ x
4589
+ 59
4590
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4591
+ p
4592
+ 0
4593
+ x
4594
+ 13
4595
+ attach_method
4596
+ p
4597
+ 3
4598
+ I
4599
+ 2
4600
+ I
4601
+ 4
4602
+ I
4603
+ 1d
4604
+ x
4605
+ 59
4606
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4607
+ p
4608
+ 0
4609
+ x
4610
+ 13
4611
+ attach_method
4612
+ p
4613
+ 3
4614
+ I
4615
+ 2
4616
+ I
4617
+ 2
4618
+ I
4619
+ 1c
4620
+ x
4621
+ 59
4622
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4623
+ p
4624
+ 0
4625
+ x
4626
+ 13
4627
+ attach_method
4628
+ p
4629
+ 3
4630
+ I
4631
+ 0
4632
+ I
4633
+ 1
4634
+ I
4635
+ 1c
4636
+ x
4637
+ 59
4638
+ /home/blambeau/work/devel/alf/lib/alf/operator/signature.rb
4639
+ p
4640
+ 0