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,611 @@
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
+ 30
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 45
76
+ 1
77
+ 2
78
+ 49
79
+ 3
80
+ 2
81
+ 13
82
+ 99
83
+ 12
84
+ 7
85
+ 4
86
+ 12
87
+ 7
88
+ 5
89
+ 12
90
+ 65
91
+ 12
92
+ 49
93
+ 6
94
+ 4
95
+ 15
96
+ 49
97
+ 4
98
+ 0
99
+ 11
100
+ I
101
+ 6
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ I
107
+ 0
108
+ n
109
+ p
110
+ 7
111
+ x
112
+ 10
113
+ Relational
114
+ x
115
+ 8
116
+ Operator
117
+ n
118
+ x
119
+ 17
120
+ open_module_under
121
+ x
122
+ 15
123
+ __module_init__
124
+ M
125
+ 1
126
+ n
127
+ n
128
+ x
129
+ 10
130
+ Relational
131
+ i
132
+ 34
133
+ 5
134
+ 66
135
+ 99
136
+ 7
137
+ 0
138
+ 45
139
+ 1
140
+ 2
141
+ 49
142
+ 3
143
+ 0
144
+ 65
145
+ 49
146
+ 4
147
+ 3
148
+ 13
149
+ 99
150
+ 12
151
+ 7
152
+ 5
153
+ 12
154
+ 7
155
+ 6
156
+ 12
157
+ 65
158
+ 12
159
+ 49
160
+ 7
161
+ 4
162
+ 15
163
+ 49
164
+ 5
165
+ 0
166
+ 11
167
+ I
168
+ 6
169
+ I
170
+ 0
171
+ I
172
+ 0
173
+ I
174
+ 0
175
+ n
176
+ p
177
+ 8
178
+ x
179
+ 8
180
+ Restrict
181
+ x
182
+ 3
183
+ Alf
184
+ n
185
+ x
186
+ 8
187
+ Operator
188
+ x
189
+ 10
190
+ open_class
191
+ x
192
+ 14
193
+ __class_init__
194
+ M
195
+ 1
196
+ n
197
+ n
198
+ x
199
+ 8
200
+ Restrict
201
+ i
202
+ 44
203
+ 5
204
+ 66
205
+ 5
206
+ 45
207
+ 0
208
+ 1
209
+ 43
210
+ 2
211
+ 45
212
+ 0
213
+ 3
214
+ 43
215
+ 4
216
+ 47
217
+ 49
218
+ 5
219
+ 2
220
+ 15
221
+ 5
222
+ 56
223
+ 6
224
+ 47
225
+ 50
226
+ 7
227
+ 0
228
+ 15
229
+ 5
230
+ 48
231
+ 8
232
+ 15
233
+ 99
234
+ 7
235
+ 9
236
+ 7
237
+ 10
238
+ 65
239
+ 67
240
+ 49
241
+ 11
242
+ 0
243
+ 49
244
+ 12
245
+ 4
246
+ 11
247
+ I
248
+ 5
249
+ I
250
+ 0
251
+ I
252
+ 0
253
+ I
254
+ 0
255
+ n
256
+ p
257
+ 13
258
+ x
259
+ 8
260
+ Operator
261
+ n
262
+ x
263
+ 10
264
+ Relational
265
+ n
266
+ x
267
+ 5
268
+ Unary
269
+ x
270
+ 7
271
+ include
272
+ M
273
+ 1
274
+ p
275
+ 2
276
+ x
277
+ 9
278
+ for_block
279
+ t
280
+ n
281
+ x
282
+ 8
283
+ Restrict
284
+ i
285
+ 18
286
+ 57
287
+ 19
288
+ 0
289
+ 15
290
+ 20
291
+ 0
292
+ 7
293
+ 0
294
+ 45
295
+ 1
296
+ 2
297
+ 7
298
+ 3
299
+ 64
300
+ 49
301
+ 4
302
+ 3
303
+ 11
304
+ I
305
+ 6
306
+ I
307
+ 1
308
+ I
309
+ 1
310
+ I
311
+ 1
312
+ n
313
+ p
314
+ 5
315
+ x
316
+ 9
317
+ predicate
318
+ x
319
+ 14
320
+ TuplePredicate
321
+ n
322
+ s
323
+ 4
324
+ true
325
+ x
326
+ 8
327
+ argument
328
+ p
329
+ 5
330
+ I
331
+ 0
332
+ I
333
+ 6
334
+ I
335
+ 4
336
+ I
337
+ 7
338
+ I
339
+ 12
340
+ x
341
+ 69
342
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
343
+ p
344
+ 1
345
+ x
346
+ 1
347
+ s
348
+ x
349
+ 9
350
+ signature
351
+ x
352
+ 9
353
+ protected
354
+ x
355
+ 5
356
+ _each
357
+ M
358
+ 1
359
+ n
360
+ n
361
+ x
362
+ 5
363
+ _each
364
+ i
365
+ 35
366
+ 45
367
+ 0
368
+ 1
369
+ 13
370
+ 71
371
+ 2
372
+ 47
373
+ 9
374
+ 21
375
+ 47
376
+ 49
377
+ 3
378
+ 0
379
+ 13
380
+ 47
381
+ 49
382
+ 4
383
+ 0
384
+ 15
385
+ 8
386
+ 24
387
+ 49
388
+ 2
389
+ 0
390
+ 19
391
+ 0
392
+ 15
393
+ 5
394
+ 56
395
+ 5
396
+ 47
397
+ 50
398
+ 6
399
+ 0
400
+ 11
401
+ I
402
+ 3
403
+ I
404
+ 1
405
+ I
406
+ 0
407
+ I
408
+ 0
409
+ n
410
+ p
411
+ 7
412
+ x
413
+ 11
414
+ TupleHandle
415
+ n
416
+ x
417
+ 3
418
+ new
419
+ x
420
+ 8
421
+ allocate
422
+ x
423
+ 10
424
+ initialize
425
+ M
426
+ 1
427
+ p
428
+ 2
429
+ x
430
+ 9
431
+ for_block
432
+ t
433
+ n
434
+ x
435
+ 5
436
+ _each
437
+ i
438
+ 27
439
+ 57
440
+ 19
441
+ 0
442
+ 15
443
+ 39
444
+ 0
445
+ 21
446
+ 1
447
+ 0
448
+ 20
449
+ 0
450
+ 49
451
+ 1
452
+ 1
453
+ 49
454
+ 2
455
+ 1
456
+ 9
457
+ 25
458
+ 20
459
+ 0
460
+ 60
461
+ 1
462
+ 8
463
+ 26
464
+ 1
465
+ 11
466
+ I
467
+ 5
468
+ I
469
+ 1
470
+ I
471
+ 1
472
+ I
473
+ 1
474
+ n
475
+ p
476
+ 3
477
+ x
478
+ 10
479
+ @predicate
480
+ x
481
+ 3
482
+ set
483
+ x
484
+ 8
485
+ evaluate
486
+ p
487
+ 5
488
+ I
489
+ 0
490
+ I
491
+ f
492
+ I
493
+ 1a
494
+ I
495
+ 0
496
+ I
497
+ 1b
498
+ x
499
+ 69
500
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
501
+ p
502
+ 1
503
+ x
504
+ 1
505
+ t
506
+ x
507
+ 16
508
+ each_input_tuple
509
+ p
510
+ 7
511
+ I
512
+ -1
513
+ I
514
+ d
515
+ I
516
+ 0
517
+ I
518
+ e
519
+ I
520
+ 1b
521
+ I
522
+ f
523
+ I
524
+ 23
525
+ x
526
+ 69
527
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
528
+ p
529
+ 1
530
+ x
531
+ 6
532
+ handle
533
+ x
534
+ 17
535
+ method_visibility
536
+ x
537
+ 15
538
+ add_defn_method
539
+ p
540
+ 9
541
+ I
542
+ 2
543
+ I
544
+ 4
545
+ I
546
+ 12
547
+ I
548
+ 6
549
+ I
550
+ 1a
551
+ I
552
+ a
553
+ I
554
+ 1e
555
+ I
556
+ d
557
+ I
558
+ 2c
559
+ x
560
+ 69
561
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
562
+ p
563
+ 0
564
+ x
565
+ 13
566
+ attach_method
567
+ p
568
+ 3
569
+ I
570
+ 2
571
+ I
572
+ 3
573
+ I
574
+ 22
575
+ x
576
+ 69
577
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
578
+ p
579
+ 0
580
+ x
581
+ 13
582
+ attach_method
583
+ p
584
+ 3
585
+ I
586
+ 2
587
+ I
588
+ 2
589
+ I
590
+ 1e
591
+ x
592
+ 69
593
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
594
+ p
595
+ 0
596
+ x
597
+ 13
598
+ attach_method
599
+ p
600
+ 3
601
+ I
602
+ 0
603
+ I
604
+ 1
605
+ I
606
+ 1c
607
+ x
608
+ 69
609
+ /home/blambeau/work/devel/alf/lib/alf/operator/relational/restrict.rb
610
+ p
611
+ 0