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