alf 0.10.1 → 0.11.0

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