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,3168 +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
- 14
111
- TuplePredicate
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
- 32
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
- 11
159
- I
160
- 4
161
- I
162
- 0
163
- I
164
- 0
165
- I
166
- 0
167
- I
168
- -2
169
- p
170
- 8
171
- x
172
- 6
173
- handle
174
- M
175
- 1
176
- p
177
- 2
178
- x
179
- 9
180
- for_block
181
- t
182
- n
183
- x
184
- 3
185
- Alf
186
- i
187
- 46
188
- 45
189
- 0
190
- 1
191
- 43
192
- 2
193
- 13
194
- 71
195
- 3
196
- 47
197
- 9
198
- 23
199
- 47
200
- 49
201
- 4
202
- 0
203
- 13
204
- 47
205
- 49
206
- 5
207
- 0
208
- 15
209
- 8
210
- 26
211
- 49
212
- 3
213
- 0
214
- 44
215
- 43
216
- 6
217
- 79
218
- 49
219
- 7
220
- 1
221
- 13
222
- 7
223
- 8
224
- 4
225
- 10
226
- 49
227
- 9
228
- 2
229
- 15
230
- 49
231
- 10
232
- 1
233
- 11
234
- I
235
- 6
236
- I
237
- 0
238
- I
239
- 0
240
- I
241
- 0
242
- I
243
- -2
244
- p
245
- 11
246
- x
247
- 5
248
- Tools
249
- n
250
- x
251
- 11
252
- TupleHandle
253
- x
254
- 3
255
- new
256
- x
257
- 8
258
- allocate
259
- x
260
- 10
261
- initialize
262
- x
263
- 4
264
- Hash
265
- x
266
- 16
267
- new_from_literal
268
- x
269
- 6
270
- status
271
- x
272
- 3
273
- []=
274
- x
275
- 3
276
- set
277
- p
278
- 3
279
- I
280
- 0
281
- I
282
- 5
283
- I
284
- 2e
285
- x
286
- 69
287
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
288
- p
289
- 0
290
- x
291
- 3
292
- let
293
- s
294
- 6
295
- coerce
296
- M
297
- 1
298
- p
299
- 2
300
- x
301
- 9
302
- for_block
303
- t
304
- n
305
- x
306
- 3
307
- Alf
308
- i
309
- 118
310
- 5
311
- 56
312
- 0
313
- 47
314
- 50
315
- 1
316
- 0
317
- 15
318
- 5
319
- 7
320
- 2
321
- 64
322
- 56
323
- 3
324
- 47
325
- 50
326
- 4
327
- 1
328
- 15
329
- 5
330
- 7
331
- 5
332
- 64
333
- 56
334
- 6
335
- 47
336
- 50
337
- 4
338
- 1
339
- 15
340
- 5
341
- 7
342
- 7
343
- 64
344
- 56
345
- 8
346
- 47
347
- 50
348
- 4
349
- 1
350
- 15
351
- 5
352
- 7
353
- 9
354
- 64
355
- 56
356
- 10
357
- 47
358
- 50
359
- 4
360
- 1
361
- 15
362
- 5
363
- 7
364
- 11
365
- 64
366
- 56
367
- 12
368
- 47
369
- 50
370
- 4
371
- 1
372
- 15
373
- 5
374
- 7
375
- 13
376
- 64
377
- 56
378
- 14
379
- 47
380
- 50
381
- 4
382
- 1
383
- 15
384
- 5
385
- 7
386
- 15
387
- 64
388
- 56
389
- 16
390
- 47
391
- 50
392
- 4
393
- 1
394
- 15
395
- 5
396
- 7
397
- 17
398
- 64
399
- 56
400
- 18
401
- 47
402
- 50
403
- 4
404
- 1
405
- 15
406
- 5
407
- 7
408
- 19
409
- 64
410
- 56
411
- 20
412
- 47
413
- 50
414
- 4
415
- 1
416
- 15
417
- 5
418
- 7
419
- 21
420
- 64
421
- 56
422
- 22
423
- 47
424
- 50
425
- 4
426
- 1
427
- 11
428
- I
429
- 4
430
- I
431
- 0
432
- I
433
- 0
434
- I
435
- 0
436
- I
437
- -2
438
- p
439
- 23
440
- M
441
- 1
442
- p
443
- 2
444
- x
445
- 9
446
- for_block
447
- t
448
- n
449
- x
450
- 3
451
- Alf
452
- i
453
- 16
454
- 45
455
- 0
456
- 1
457
- 5
458
- 48
459
- 2
460
- 49
461
- 3
462
- 1
463
- 5
464
- 48
465
- 4
466
- 49
467
- 5
468
- 1
469
- 11
470
- I
471
- 3
472
- I
473
- 0
474
- I
475
- 0
476
- I
477
- 0
478
- I
479
- -2
480
- p
481
- 6
482
- x
483
- 14
484
- TuplePredicate
485
- n
486
- x
487
- 3
488
- arg
489
- x
490
- 6
491
- coerce
492
- x
493
- 6
494
- handle
495
- x
496
- 8
497
- evaluate
498
- p
499
- 3
500
- I
501
- 0
502
- I
503
- 8
504
- I
505
- 10
506
- x
507
- 69
508
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
509
- p
510
- 0
511
- x
512
- 7
513
- subject
514
- s
515
- 19
516
- from TuplePredicate
517
- M
518
- 1
519
- p
520
- 2
521
- x
522
- 9
523
- for_block
524
- t
525
- n
526
- x
527
- 3
528
- Alf
529
- i
530
- 18
531
- 5
532
- 7
533
- 0
534
- 56
535
- 1
536
- 47
537
- 50
538
- 2
539
- 1
540
- 15
541
- 5
542
- 56
543
- 3
544
- 47
545
- 50
546
- 4
547
- 0
548
- 11
549
- I
550
- 4
551
- I
552
- 0
553
- I
554
- 0
555
- I
556
- 0
557
- I
558
- -2
559
- p
560
- 5
561
- x
562
- 3
563
- arg
564
- M
565
- 1
566
- p
567
- 2
568
- x
569
- 9
570
- for_block
571
- t
572
- n
573
- x
574
- 3
575
- Alf
576
- i
577
- 39
578
- 45
579
- 0
580
- 1
581
- 13
582
- 71
583
- 2
584
- 47
585
- 9
586
- 28
587
- 47
588
- 49
589
- 3
590
- 0
591
- 13
592
- 5
593
- 56
594
- 4
595
- 47
596
- 50
597
- 5
598
- 0
599
- 47
600
- 49
601
- 6
602
- 1
603
- 15
604
- 8
605
- 38
606
- 5
607
- 56
608
- 7
609
- 47
610
- 50
611
- 5
612
- 0
613
- 49
614
- 2
615
- 1
616
- 11
617
- I
618
- 5
619
- I
620
- 0
621
- I
622
- 0
623
- I
624
- 0
625
- I
626
- -2
627
- p
628
- 8
629
- x
630
- 14
631
- TuplePredicate
632
- n
633
- x
634
- 3
635
- new
636
- x
637
- 8
638
- allocate
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
- 8
653
- 5
654
- 48
655
- 0
656
- 4
657
- 10
658
- 83
659
- 1
660
- 11
661
- I
662
- 3
663
- I
664
- 0
665
- I
666
- 0
667
- I
668
- 0
669
- I
670
- -2
671
- p
672
- 2
673
- x
674
- 6
675
- status
676
- x
677
- 2
678
- ==
679
- p
680
- 3
681
- I
682
- 0
683
- I
684
- b
685
- I
686
- 8
687
- x
688
- 69
689
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
690
- p
691
- 0
692
- x
693
- 6
694
- lambda
695
- x
696
- 10
697
- initialize
698
- M
699
- 1
700
- p
701
- 2
702
- x
703
- 9
704
- for_block
705
- t
706
- n
707
- x
708
- 3
709
- Alf
710
- i
711
- 8
712
- 5
713
- 48
714
- 0
715
- 4
716
- 10
717
- 83
718
- 1
719
- 11
720
- I
721
- 3
722
- I
723
- 0
724
- I
725
- 0
726
- I
727
- 0
728
- I
729
- -2
730
- p
731
- 2
732
- x
733
- 6
734
- status
735
- x
736
- 2
737
- ==
738
- p
739
- 3
740
- I
741
- 0
742
- I
743
- b
744
- I
745
- 8
746
- x
747
- 69
748
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
749
- p
750
- 0
751
- p
752
- 3
753
- I
754
- 0
755
- I
756
- b
757
- I
758
- 27
759
- x
760
- 69
761
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
762
- p
763
- 0
764
- x
765
- 3
766
- let
767
- M
768
- 1
769
- p
770
- 2
771
- x
772
- 9
773
- for_block
774
- t
775
- n
776
- x
777
- 3
778
- Alf
779
- i
780
- 12
781
- 5
782
- 5
783
- 2
784
- 47
785
- 49
786
- 0
787
- 1
788
- 47
789
- 49
790
- 1
791
- 1
792
- 11
793
- I
794
- 4
795
- I
796
- 0
797
- I
798
- 0
799
- I
800
- 0
801
- I
802
- -2
803
- p
804
- 2
805
- x
806
- 3
807
- eql
808
- x
809
- 6
810
- should
811
- p
812
- 3
813
- I
814
- 0
815
- I
816
- c
817
- I
818
- c
819
- x
820
- 69
821
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
822
- p
823
- 0
824
- x
825
- 2
826
- it
827
- p
828
- 5
829
- I
830
- 0
831
- I
832
- b
833
- I
834
- a
835
- I
836
- c
837
- I
838
- 12
839
- x
840
- 69
841
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
842
- p
843
- 0
844
- x
845
- 8
846
- describe
847
- s
848
- 9
849
- from true
850
- M
851
- 1
852
- p
853
- 2
854
- x
855
- 9
856
- for_block
857
- t
858
- n
859
- x
860
- 3
861
- Alf
862
- i
863
- 18
864
- 5
865
- 7
866
- 0
867
- 56
868
- 1
869
- 47
870
- 50
871
- 2
872
- 1
873
- 15
874
- 5
875
- 56
876
- 3
877
- 47
878
- 50
879
- 4
880
- 0
881
- 11
882
- I
883
- 4
884
- I
885
- 0
886
- I
887
- 0
888
- I
889
- 0
890
- I
891
- -2
892
- p
893
- 5
894
- x
895
- 3
896
- arg
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
- 2
911
- 2
912
- 11
913
- I
914
- 2
915
- I
916
- 0
917
- I
918
- 0
919
- I
920
- 0
921
- I
922
- -2
923
- p
924
- 0
925
- p
926
- 3
927
- I
928
- 0
929
- I
930
- 10
931
- I
932
- 2
933
- x
934
- 69
935
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
936
- p
937
- 0
938
- x
939
- 3
940
- let
941
- M
942
- 1
943
- p
944
- 2
945
- x
946
- 9
947
- for_block
948
- t
949
- n
950
- x
951
- 3
952
- Alf
953
- i
954
- 12
955
- 5
956
- 5
957
- 2
958
- 47
959
- 49
960
- 0
961
- 1
962
- 47
963
- 49
964
- 1
965
- 1
966
- 11
967
- I
968
- 4
969
- I
970
- 0
971
- I
972
- 0
973
- I
974
- 0
975
- I
976
- -2
977
- p
978
- 2
979
- x
980
- 3
981
- eql
982
- x
983
- 6
984
- should
985
- p
986
- 3
987
- I
988
- 0
989
- I
990
- 11
991
- I
992
- c
993
- x
994
- 69
995
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
996
- p
997
- 0
998
- x
999
- 2
1000
- it
1001
- p
1002
- 5
1003
- I
1004
- 0
1005
- I
1006
- 10
1007
- I
1008
- a
1009
- I
1010
- 11
1011
- I
1012
- 12
1013
- x
1014
- 69
1015
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1016
- p
1017
- 0
1018
- s
1019
- 10
1020
- from false
1021
- M
1022
- 1
1023
- p
1024
- 2
1025
- x
1026
- 9
1027
- for_block
1028
- t
1029
- n
1030
- x
1031
- 3
1032
- Alf
1033
- i
1034
- 18
1035
- 5
1036
- 7
1037
- 0
1038
- 56
1039
- 1
1040
- 47
1041
- 50
1042
- 2
1043
- 1
1044
- 15
1045
- 5
1046
- 56
1047
- 3
1048
- 47
1049
- 50
1050
- 4
1051
- 0
1052
- 11
1053
- I
1054
- 4
1055
- I
1056
- 0
1057
- I
1058
- 0
1059
- I
1060
- 0
1061
- I
1062
- -2
1063
- p
1064
- 5
1065
- x
1066
- 3
1067
- arg
1068
- M
1069
- 1
1070
- p
1071
- 2
1072
- x
1073
- 9
1074
- for_block
1075
- t
1076
- n
1077
- x
1078
- 3
1079
- Alf
1080
- i
1081
- 2
1082
- 3
1083
- 11
1084
- I
1085
- 2
1086
- I
1087
- 0
1088
- I
1089
- 0
1090
- I
1091
- 0
1092
- I
1093
- -2
1094
- p
1095
- 0
1096
- p
1097
- 3
1098
- I
1099
- 0
1100
- I
1101
- 15
1102
- I
1103
- 2
1104
- x
1105
- 69
1106
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1107
- p
1108
- 0
1109
- x
1110
- 3
1111
- let
1112
- M
1113
- 1
1114
- p
1115
- 2
1116
- x
1117
- 9
1118
- for_block
1119
- t
1120
- n
1121
- x
1122
- 3
1123
- Alf
1124
- i
1125
- 12
1126
- 5
1127
- 5
1128
- 3
1129
- 47
1130
- 49
1131
- 0
1132
- 1
1133
- 47
1134
- 49
1135
- 1
1136
- 1
1137
- 11
1138
- I
1139
- 4
1140
- I
1141
- 0
1142
- I
1143
- 0
1144
- I
1145
- 0
1146
- I
1147
- -2
1148
- p
1149
- 2
1150
- x
1151
- 3
1152
- eql
1153
- x
1154
- 6
1155
- should
1156
- p
1157
- 3
1158
- I
1159
- 0
1160
- I
1161
- 16
1162
- I
1163
- c
1164
- x
1165
- 69
1166
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1167
- p
1168
- 0
1169
- x
1170
- 2
1171
- it
1172
- p
1173
- 5
1174
- I
1175
- 0
1176
- I
1177
- 15
1178
- I
1179
- a
1180
- I
1181
- 16
1182
- I
1183
- 12
1184
- x
1185
- 69
1186
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1187
- p
1188
- 0
1189
- s
1190
- 9
1191
- from Proc
1192
- M
1193
- 1
1194
- p
1195
- 2
1196
- x
1197
- 9
1198
- for_block
1199
- t
1200
- n
1201
- x
1202
- 3
1203
- Alf
1204
- i
1205
- 18
1206
- 5
1207
- 7
1208
- 0
1209
- 56
1210
- 1
1211
- 47
1212
- 50
1213
- 2
1214
- 1
1215
- 15
1216
- 5
1217
- 56
1218
- 3
1219
- 47
1220
- 50
1221
- 4
1222
- 0
1223
- 11
1224
- I
1225
- 4
1226
- I
1227
- 0
1228
- I
1229
- 0
1230
- I
1231
- 0
1232
- I
1233
- -2
1234
- p
1235
- 5
1236
- x
1237
- 3
1238
- arg
1239
- M
1240
- 1
1241
- p
1242
- 2
1243
- x
1244
- 9
1245
- for_block
1246
- t
1247
- n
1248
- x
1249
- 3
1250
- Alf
1251
- i
1252
- 8
1253
- 5
1254
- 56
1255
- 0
1256
- 47
1257
- 50
1258
- 1
1259
- 0
1260
- 11
1261
- I
1262
- 3
1263
- I
1264
- 0
1265
- I
1266
- 0
1267
- I
1268
- 0
1269
- I
1270
- -2
1271
- p
1272
- 2
1273
- M
1274
- 1
1275
- p
1276
- 2
1277
- x
1278
- 9
1279
- for_block
1280
- t
1281
- n
1282
- x
1283
- 3
1284
- Alf
1285
- i
1286
- 8
1287
- 5
1288
- 48
1289
- 0
1290
- 4
1291
- 10
1292
- 83
1293
- 1
1294
- 11
1295
- I
1296
- 3
1297
- I
1298
- 0
1299
- I
1300
- 0
1301
- I
1302
- 0
1303
- I
1304
- -2
1305
- p
1306
- 2
1307
- x
1308
- 6
1309
- status
1310
- x
1311
- 2
1312
- ==
1313
- p
1314
- 3
1315
- I
1316
- 0
1317
- I
1318
- 1a
1319
- I
1320
- 8
1321
- x
1322
- 69
1323
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1324
- p
1325
- 0
1326
- x
1327
- 6
1328
- lambda
1329
- p
1330
- 3
1331
- I
1332
- 0
1333
- I
1334
- 1a
1335
- I
1336
- 8
1337
- x
1338
- 69
1339
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1340
- p
1341
- 0
1342
- x
1343
- 3
1344
- let
1345
- M
1346
- 1
1347
- p
1348
- 2
1349
- x
1350
- 9
1351
- for_block
1352
- t
1353
- n
1354
- x
1355
- 3
1356
- Alf
1357
- i
1358
- 12
1359
- 5
1360
- 5
1361
- 2
1362
- 47
1363
- 49
1364
- 0
1365
- 1
1366
- 47
1367
- 49
1368
- 1
1369
- 1
1370
- 11
1371
- I
1372
- 4
1373
- I
1374
- 0
1375
- I
1376
- 0
1377
- I
1378
- 0
1379
- I
1380
- -2
1381
- p
1382
- 2
1383
- x
1384
- 3
1385
- eql
1386
- x
1387
- 6
1388
- should
1389
- p
1390
- 3
1391
- I
1392
- 0
1393
- I
1394
- 1b
1395
- I
1396
- c
1397
- x
1398
- 69
1399
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1400
- p
1401
- 0
1402
- x
1403
- 2
1404
- it
1405
- p
1406
- 5
1407
- I
1408
- 0
1409
- I
1410
- 1a
1411
- I
1412
- a
1413
- I
1414
- 1b
1415
- I
1416
- 12
1417
- x
1418
- 69
1419
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1420
- p
1421
- 0
1422
- s
1423
- 11
1424
- from String
1425
- M
1426
- 1
1427
- p
1428
- 2
1429
- x
1430
- 9
1431
- for_block
1432
- t
1433
- n
1434
- x
1435
- 3
1436
- Alf
1437
- i
1438
- 18
1439
- 5
1440
- 7
1441
- 0
1442
- 56
1443
- 1
1444
- 47
1445
- 50
1446
- 2
1447
- 1
1448
- 15
1449
- 5
1450
- 56
1451
- 3
1452
- 47
1453
- 50
1454
- 4
1455
- 0
1456
- 11
1457
- I
1458
- 4
1459
- I
1460
- 0
1461
- I
1462
- 0
1463
- I
1464
- 0
1465
- I
1466
- -2
1467
- p
1468
- 5
1469
- x
1470
- 3
1471
- arg
1472
- M
1473
- 1
1474
- p
1475
- 2
1476
- x
1477
- 9
1478
- for_block
1479
- t
1480
- n
1481
- x
1482
- 3
1483
- Alf
1484
- i
1485
- 4
1486
- 7
1487
- 0
1488
- 64
1489
- 11
1490
- I
1491
- 2
1492
- I
1493
- 0
1494
- I
1495
- 0
1496
- I
1497
- 0
1498
- I
1499
- -2
1500
- p
1501
- 1
1502
- s
1503
- 12
1504
- status == 10
1505
- p
1506
- 3
1507
- I
1508
- 0
1509
- I
1510
- 1f
1511
- I
1512
- 4
1513
- x
1514
- 69
1515
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1516
- p
1517
- 0
1518
- x
1519
- 3
1520
- let
1521
- M
1522
- 1
1523
- p
1524
- 2
1525
- x
1526
- 9
1527
- for_block
1528
- t
1529
- n
1530
- x
1531
- 3
1532
- Alf
1533
- i
1534
- 12
1535
- 5
1536
- 5
1537
- 2
1538
- 47
1539
- 49
1540
- 0
1541
- 1
1542
- 47
1543
- 49
1544
- 1
1545
- 1
1546
- 11
1547
- I
1548
- 4
1549
- I
1550
- 0
1551
- I
1552
- 0
1553
- I
1554
- 0
1555
- I
1556
- -2
1557
- p
1558
- 2
1559
- x
1560
- 3
1561
- eql
1562
- x
1563
- 6
1564
- should
1565
- p
1566
- 3
1567
- I
1568
- 0
1569
- I
1570
- 20
1571
- I
1572
- c
1573
- x
1574
- 69
1575
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1576
- p
1577
- 0
1578
- x
1579
- 2
1580
- it
1581
- p
1582
- 5
1583
- I
1584
- 0
1585
- I
1586
- 1f
1587
- I
1588
- a
1589
- I
1590
- 20
1591
- I
1592
- 12
1593
- x
1594
- 69
1595
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1596
- p
1597
- 0
1598
- s
1599
- 11
1600
- from Symbol
1601
- M
1602
- 1
1603
- p
1604
- 2
1605
- x
1606
- 9
1607
- for_block
1608
- t
1609
- n
1610
- x
1611
- 3
1612
- Alf
1613
- i
1614
- 18
1615
- 5
1616
- 7
1617
- 0
1618
- 56
1619
- 1
1620
- 47
1621
- 50
1622
- 2
1623
- 1
1624
- 15
1625
- 5
1626
- 56
1627
- 3
1628
- 47
1629
- 50
1630
- 4
1631
- 0
1632
- 11
1633
- I
1634
- 4
1635
- I
1636
- 0
1637
- I
1638
- 0
1639
- I
1640
- 0
1641
- I
1642
- -2
1643
- p
1644
- 5
1645
- x
1646
- 3
1647
- arg
1648
- M
1649
- 1
1650
- p
1651
- 2
1652
- x
1653
- 9
1654
- for_block
1655
- t
1656
- n
1657
- x
1658
- 3
1659
- Alf
1660
- i
1661
- 3
1662
- 7
1663
- 0
1664
- 11
1665
- I
1666
- 2
1667
- I
1668
- 0
1669
- I
1670
- 0
1671
- I
1672
- 0
1673
- I
1674
- -2
1675
- p
1676
- 1
1677
- x
1678
- 6
1679
- status
1680
- p
1681
- 3
1682
- I
1683
- 0
1684
- I
1685
- 24
1686
- I
1687
- 3
1688
- x
1689
- 69
1690
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1691
- p
1692
- 0
1693
- x
1694
- 3
1695
- let
1696
- M
1697
- 1
1698
- p
1699
- 2
1700
- x
1701
- 9
1702
- for_block
1703
- t
1704
- n
1705
- x
1706
- 3
1707
- Alf
1708
- i
1709
- 13
1710
- 5
1711
- 5
1712
- 4
1713
- 10
1714
- 47
1715
- 49
1716
- 0
1717
- 1
1718
- 47
1719
- 49
1720
- 1
1721
- 1
1722
- 11
1723
- I
1724
- 4
1725
- I
1726
- 0
1727
- I
1728
- 0
1729
- I
1730
- 0
1731
- I
1732
- -2
1733
- p
1734
- 2
1735
- x
1736
- 3
1737
- eql
1738
- x
1739
- 6
1740
- should
1741
- p
1742
- 3
1743
- I
1744
- 0
1745
- I
1746
- 25
1747
- I
1748
- d
1749
- x
1750
- 69
1751
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1752
- p
1753
- 0
1754
- x
1755
- 2
1756
- it
1757
- p
1758
- 5
1759
- I
1760
- 0
1761
- I
1762
- 24
1763
- I
1764
- a
1765
- I
1766
- 25
1767
- I
1768
- 12
1769
- x
1770
- 69
1771
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1772
- p
1773
- 0
1774
- s
1775
- 26
1776
- from Hash without coercion
1777
- M
1778
- 1
1779
- p
1780
- 2
1781
- x
1782
- 9
1783
- for_block
1784
- t
1785
- n
1786
- x
1787
- 3
1788
- Alf
1789
- i
1790
- 18
1791
- 5
1792
- 7
1793
- 0
1794
- 56
1795
- 1
1796
- 47
1797
- 50
1798
- 2
1799
- 1
1800
- 15
1801
- 5
1802
- 56
1803
- 3
1804
- 47
1805
- 50
1806
- 4
1807
- 0
1808
- 11
1809
- I
1810
- 4
1811
- I
1812
- 0
1813
- I
1814
- 0
1815
- I
1816
- 0
1817
- I
1818
- -2
1819
- p
1820
- 5
1821
- x
1822
- 3
1823
- arg
1824
- M
1825
- 1
1826
- p
1827
- 2
1828
- x
1829
- 9
1830
- for_block
1831
- t
1832
- n
1833
- x
1834
- 3
1835
- Alf
1836
- i
1837
- 17
1838
- 44
1839
- 43
1840
- 0
1841
- 79
1842
- 49
1843
- 1
1844
- 1
1845
- 13
1846
- 7
1847
- 2
1848
- 4
1849
- 10
1850
- 49
1851
- 3
1852
- 2
1853
- 15
1854
- 11
1855
- I
1856
- 5
1857
- I
1858
- 0
1859
- I
1860
- 0
1861
- I
1862
- 0
1863
- I
1864
- -2
1865
- p
1866
- 4
1867
- x
1868
- 4
1869
- Hash
1870
- x
1871
- 16
1872
- new_from_literal
1873
- x
1874
- 6
1875
- status
1876
- x
1877
- 3
1878
- []=
1879
- p
1880
- 3
1881
- I
1882
- 0
1883
- I
1884
- 29
1885
- I
1886
- 11
1887
- x
1888
- 69
1889
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1890
- p
1891
- 0
1892
- x
1893
- 3
1894
- let
1895
- M
1896
- 1
1897
- p
1898
- 2
1899
- x
1900
- 9
1901
- for_block
1902
- t
1903
- n
1904
- x
1905
- 3
1906
- Alf
1907
- i
1908
- 12
1909
- 5
1910
- 5
1911
- 2
1912
- 47
1913
- 49
1914
- 0
1915
- 1
1916
- 47
1917
- 49
1918
- 1
1919
- 1
1920
- 11
1921
- I
1922
- 4
1923
- I
1924
- 0
1925
- I
1926
- 0
1927
- I
1928
- 0
1929
- I
1930
- -2
1931
- p
1932
- 2
1933
- x
1934
- 3
1935
- eql
1936
- x
1937
- 6
1938
- should
1939
- p
1940
- 3
1941
- I
1942
- 0
1943
- I
1944
- 2a
1945
- I
1946
- c
1947
- x
1948
- 69
1949
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1950
- p
1951
- 0
1952
- x
1953
- 2
1954
- it
1955
- p
1956
- 5
1957
- I
1958
- 0
1959
- I
1960
- 29
1961
- I
1962
- a
1963
- I
1964
- 2a
1965
- I
1966
- 12
1967
- x
1968
- 69
1969
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
1970
- p
1971
- 0
1972
- s
1973
- 23
1974
- from Hash with coercion
1975
- M
1976
- 1
1977
- p
1978
- 2
1979
- x
1980
- 9
1981
- for_block
1982
- t
1983
- n
1984
- x
1985
- 3
1986
- Alf
1987
- i
1988
- 18
1989
- 5
1990
- 7
1991
- 0
1992
- 56
1993
- 1
1994
- 47
1995
- 50
1996
- 2
1997
- 1
1998
- 15
1999
- 5
2000
- 56
2001
- 3
2002
- 47
2003
- 50
2004
- 4
2005
- 0
2006
- 11
2007
- I
2008
- 4
2009
- I
2010
- 0
2011
- I
2012
- 0
2013
- I
2014
- 0
2015
- I
2016
- -2
2017
- p
2018
- 5
2019
- x
2020
- 3
2021
- arg
2022
- M
2023
- 1
2024
- p
2025
- 2
2026
- x
2027
- 9
2028
- for_block
2029
- t
2030
- n
2031
- x
2032
- 3
2033
- Alf
2034
- i
2035
- 19
2036
- 44
2037
- 43
2038
- 0
2039
- 79
2040
- 49
2041
- 1
2042
- 1
2043
- 13
2044
- 7
2045
- 2
2046
- 64
2047
- 7
2048
- 3
2049
- 64
2050
- 49
2051
- 4
2052
- 2
2053
- 15
2054
- 11
2055
- I
2056
- 5
2057
- I
2058
- 0
2059
- I
2060
- 0
2061
- I
2062
- 0
2063
- I
2064
- -2
2065
- p
2066
- 5
2067
- x
2068
- 4
2069
- Hash
2070
- x
2071
- 16
2072
- new_from_literal
2073
- s
2074
- 6
2075
- status
2076
- s
2077
- 2
2078
- 10
2079
- x
2080
- 3
2081
- []=
2082
- p
2083
- 3
2084
- I
2085
- 0
2086
- I
2087
- 2e
2088
- I
2089
- 13
2090
- x
2091
- 69
2092
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2093
- p
2094
- 0
2095
- x
2096
- 3
2097
- let
2098
- M
2099
- 1
2100
- p
2101
- 2
2102
- x
2103
- 9
2104
- for_block
2105
- t
2106
- n
2107
- x
2108
- 3
2109
- Alf
2110
- i
2111
- 12
2112
- 5
2113
- 5
2114
- 2
2115
- 47
2116
- 49
2117
- 0
2118
- 1
2119
- 47
2120
- 49
2121
- 1
2122
- 1
2123
- 11
2124
- I
2125
- 4
2126
- I
2127
- 0
2128
- I
2129
- 0
2130
- I
2131
- 0
2132
- I
2133
- -2
2134
- p
2135
- 2
2136
- x
2137
- 3
2138
- eql
2139
- x
2140
- 6
2141
- should
2142
- p
2143
- 3
2144
- I
2145
- 0
2146
- I
2147
- 2f
2148
- I
2149
- c
2150
- x
2151
- 69
2152
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2153
- p
2154
- 0
2155
- x
2156
- 2
2157
- it
2158
- p
2159
- 5
2160
- I
2161
- 0
2162
- I
2163
- 2e
2164
- I
2165
- a
2166
- I
2167
- 2f
2168
- I
2169
- 12
2170
- x
2171
- 69
2172
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2173
- p
2174
- 0
2175
- s
2176
- 22
2177
- from a singleton Array
2178
- M
2179
- 1
2180
- p
2181
- 2
2182
- x
2183
- 9
2184
- for_block
2185
- t
2186
- n
2187
- x
2188
- 3
2189
- Alf
2190
- i
2191
- 18
2192
- 5
2193
- 7
2194
- 0
2195
- 56
2196
- 1
2197
- 47
2198
- 50
2199
- 2
2200
- 1
2201
- 15
2202
- 5
2203
- 56
2204
- 3
2205
- 47
2206
- 50
2207
- 4
2208
- 0
2209
- 11
2210
- I
2211
- 4
2212
- I
2213
- 0
2214
- I
2215
- 0
2216
- I
2217
- 0
2218
- I
2219
- -2
2220
- p
2221
- 5
2222
- x
2223
- 3
2224
- arg
2225
- M
2226
- 1
2227
- p
2228
- 2
2229
- x
2230
- 9
2231
- for_block
2232
- t
2233
- n
2234
- x
2235
- 3
2236
- Alf
2237
- i
2238
- 6
2239
- 7
2240
- 0
2241
- 64
2242
- 35
2243
- 1
2244
- 11
2245
- I
2246
- 2
2247
- I
2248
- 0
2249
- I
2250
- 0
2251
- I
2252
- 0
2253
- I
2254
- -2
2255
- p
2256
- 1
2257
- s
2258
- 12
2259
- status == 10
2260
- p
2261
- 3
2262
- I
2263
- 0
2264
- I
2265
- 33
2266
- I
2267
- 6
2268
- x
2269
- 69
2270
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2271
- p
2272
- 0
2273
- x
2274
- 3
2275
- let
2276
- M
2277
- 1
2278
- p
2279
- 2
2280
- x
2281
- 9
2282
- for_block
2283
- t
2284
- n
2285
- x
2286
- 3
2287
- Alf
2288
- i
2289
- 12
2290
- 5
2291
- 5
2292
- 2
2293
- 47
2294
- 49
2295
- 0
2296
- 1
2297
- 47
2298
- 49
2299
- 1
2300
- 1
2301
- 11
2302
- I
2303
- 4
2304
- I
2305
- 0
2306
- I
2307
- 0
2308
- I
2309
- 0
2310
- I
2311
- -2
2312
- p
2313
- 2
2314
- x
2315
- 3
2316
- eql
2317
- x
2318
- 6
2319
- should
2320
- p
2321
- 3
2322
- I
2323
- 0
2324
- I
2325
- 34
2326
- I
2327
- c
2328
- x
2329
- 69
2330
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2331
- p
2332
- 0
2333
- x
2334
- 2
2335
- it
2336
- p
2337
- 5
2338
- I
2339
- 0
2340
- I
2341
- 33
2342
- I
2343
- a
2344
- I
2345
- 34
2346
- I
2347
- 12
2348
- x
2349
- 69
2350
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2351
- p
2352
- 0
2353
- s
2354
- 27
2355
- from an Array with coercion
2356
- M
2357
- 1
2358
- p
2359
- 2
2360
- x
2361
- 9
2362
- for_block
2363
- t
2364
- n
2365
- x
2366
- 3
2367
- Alf
2368
- i
2369
- 18
2370
- 5
2371
- 7
2372
- 0
2373
- 56
2374
- 1
2375
- 47
2376
- 50
2377
- 2
2378
- 1
2379
- 15
2380
- 5
2381
- 56
2382
- 3
2383
- 47
2384
- 50
2385
- 4
2386
- 0
2387
- 11
2388
- I
2389
- 4
2390
- I
2391
- 0
2392
- I
2393
- 0
2394
- I
2395
- 0
2396
- I
2397
- -2
2398
- p
2399
- 5
2400
- x
2401
- 3
2402
- arg
2403
- M
2404
- 1
2405
- p
2406
- 2
2407
- x
2408
- 9
2409
- for_block
2410
- t
2411
- n
2412
- x
2413
- 3
2414
- Alf
2415
- i
2416
- 9
2417
- 7
2418
- 0
2419
- 64
2420
- 7
2421
- 1
2422
- 64
2423
- 35
2424
- 2
2425
- 11
2426
- I
2427
- 3
2428
- I
2429
- 0
2430
- I
2431
- 0
2432
- I
2433
- 0
2434
- I
2435
- -2
2436
- p
2437
- 2
2438
- s
2439
- 6
2440
- status
2441
- s
2442
- 2
2443
- 10
2444
- p
2445
- 3
2446
- I
2447
- 0
2448
- I
2449
- 38
2450
- I
2451
- 9
2452
- x
2453
- 69
2454
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2455
- p
2456
- 0
2457
- x
2458
- 3
2459
- let
2460
- M
2461
- 1
2462
- p
2463
- 2
2464
- x
2465
- 9
2466
- for_block
2467
- t
2468
- n
2469
- x
2470
- 3
2471
- Alf
2472
- i
2473
- 12
2474
- 5
2475
- 5
2476
- 2
2477
- 47
2478
- 49
2479
- 0
2480
- 1
2481
- 47
2482
- 49
2483
- 1
2484
- 1
2485
- 11
2486
- I
2487
- 4
2488
- I
2489
- 0
2490
- I
2491
- 0
2492
- I
2493
- 0
2494
- I
2495
- -2
2496
- p
2497
- 2
2498
- x
2499
- 3
2500
- eql
2501
- x
2502
- 6
2503
- should
2504
- p
2505
- 3
2506
- I
2507
- 0
2508
- I
2509
- 39
2510
- I
2511
- c
2512
- x
2513
- 69
2514
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2515
- p
2516
- 0
2517
- x
2518
- 2
2519
- it
2520
- p
2521
- 5
2522
- I
2523
- 0
2524
- I
2525
- 38
2526
- I
2527
- a
2528
- I
2529
- 39
2530
- I
2531
- 12
2532
- x
2533
- 69
2534
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2535
- p
2536
- 0
2537
- p
2538
- 23
2539
- I
2540
- 0
2541
- I
2542
- 8
2543
- I
2544
- 8
2545
- I
2546
- a
2547
- I
2548
- 13
2549
- I
2550
- f
2551
- I
2552
- 1e
2553
- I
2554
- 14
2555
- I
2556
- 29
2557
- I
2558
- 19
2559
- I
2560
- 34
2561
- I
2562
- 1e
2563
- I
2564
- 3f
2565
- I
2566
- 23
2567
- I
2568
- 4a
2569
- I
2570
- 28
2571
- I
2572
- 55
2573
- I
2574
- 2d
2575
- I
2576
- 60
2577
- I
2578
- 32
2579
- I
2580
- 6b
2581
- I
2582
- 37
2583
- I
2584
- 76
2585
- x
2586
- 69
2587
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2588
- p
2589
- 0
2590
- x
2591
- 8
2592
- describe
2593
- s
2594
- 9
2595
- from_argv
2596
- M
2597
- 1
2598
- p
2599
- 2
2600
- x
2601
- 9
2602
- for_block
2603
- t
2604
- n
2605
- x
2606
- 3
2607
- Alf
2608
- i
2609
- 30
2610
- 5
2611
- 56
2612
- 0
2613
- 47
2614
- 50
2615
- 1
2616
- 0
2617
- 15
2618
- 5
2619
- 7
2620
- 2
2621
- 64
2622
- 56
2623
- 3
2624
- 47
2625
- 50
2626
- 4
2627
- 1
2628
- 15
2629
- 5
2630
- 7
2631
- 5
2632
- 64
2633
- 56
2634
- 6
2635
- 47
2636
- 50
2637
- 4
2638
- 1
2639
- 11
2640
- I
2641
- 4
2642
- I
2643
- 0
2644
- I
2645
- 0
2646
- I
2647
- 0
2648
- I
2649
- -2
2650
- p
2651
- 7
2652
- M
2653
- 1
2654
- p
2655
- 2
2656
- x
2657
- 9
2658
- for_block
2659
- t
2660
- n
2661
- x
2662
- 3
2663
- Alf
2664
- i
2665
- 16
2666
- 45
2667
- 0
2668
- 1
2669
- 5
2670
- 48
2671
- 2
2672
- 49
2673
- 3
2674
- 1
2675
- 5
2676
- 48
2677
- 4
2678
- 49
2679
- 5
2680
- 1
2681
- 11
2682
- I
2683
- 3
2684
- I
2685
- 0
2686
- I
2687
- 0
2688
- I
2689
- 0
2690
- I
2691
- -2
2692
- p
2693
- 6
2694
- x
2695
- 14
2696
- TuplePredicate
2697
- n
2698
- x
2699
- 4
2700
- argv
2701
- x
2702
- 9
2703
- from_argv
2704
- x
2705
- 6
2706
- handle
2707
- x
2708
- 8
2709
- evaluate
2710
- p
2711
- 3
2712
- I
2713
- 0
2714
- I
2715
- 3f
2716
- I
2717
- 10
2718
- x
2719
- 69
2720
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2721
- p
2722
- 0
2723
- x
2724
- 7
2725
- subject
2726
- s
2727
- 22
2728
- from a singleton Array
2729
- M
2730
- 1
2731
- p
2732
- 2
2733
- x
2734
- 9
2735
- for_block
2736
- t
2737
- n
2738
- x
2739
- 3
2740
- Alf
2741
- i
2742
- 18
2743
- 5
2744
- 7
2745
- 0
2746
- 56
2747
- 1
2748
- 47
2749
- 50
2750
- 2
2751
- 1
2752
- 15
2753
- 5
2754
- 56
2755
- 3
2756
- 47
2757
- 50
2758
- 4
2759
- 0
2760
- 11
2761
- I
2762
- 4
2763
- I
2764
- 0
2765
- I
2766
- 0
2767
- I
2768
- 0
2769
- I
2770
- -2
2771
- p
2772
- 5
2773
- x
2774
- 4
2775
- argv
2776
- M
2777
- 1
2778
- p
2779
- 2
2780
- x
2781
- 9
2782
- for_block
2783
- t
2784
- n
2785
- x
2786
- 3
2787
- Alf
2788
- i
2789
- 6
2790
- 7
2791
- 0
2792
- 64
2793
- 35
2794
- 1
2795
- 11
2796
- I
2797
- 2
2798
- I
2799
- 0
2800
- I
2801
- 0
2802
- I
2803
- 0
2804
- I
2805
- -2
2806
- p
2807
- 1
2808
- s
2809
- 12
2810
- status == 10
2811
- p
2812
- 3
2813
- I
2814
- 0
2815
- I
2816
- 43
2817
- I
2818
- 6
2819
- x
2820
- 69
2821
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2822
- p
2823
- 0
2824
- x
2825
- 3
2826
- let
2827
- M
2828
- 1
2829
- p
2830
- 2
2831
- x
2832
- 9
2833
- for_block
2834
- t
2835
- n
2836
- x
2837
- 3
2838
- Alf
2839
- i
2840
- 12
2841
- 5
2842
- 5
2843
- 2
2844
- 47
2845
- 49
2846
- 0
2847
- 1
2848
- 47
2849
- 49
2850
- 1
2851
- 1
2852
- 11
2853
- I
2854
- 4
2855
- I
2856
- 0
2857
- I
2858
- 0
2859
- I
2860
- 0
2861
- I
2862
- -2
2863
- p
2864
- 2
2865
- x
2866
- 3
2867
- eql
2868
- x
2869
- 6
2870
- should
2871
- p
2872
- 3
2873
- I
2874
- 0
2875
- I
2876
- 44
2877
- I
2878
- c
2879
- x
2880
- 69
2881
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2882
- p
2883
- 0
2884
- x
2885
- 2
2886
- it
2887
- p
2888
- 5
2889
- I
2890
- 0
2891
- I
2892
- 43
2893
- I
2894
- a
2895
- I
2896
- 44
2897
- I
2898
- 12
2899
- x
2900
- 69
2901
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
2902
- p
2903
- 0
2904
- x
2905
- 8
2906
- describe
2907
- s
2908
- 27
2909
- from an Array with coercion
2910
- M
2911
- 1
2912
- p
2913
- 2
2914
- x
2915
- 9
2916
- for_block
2917
- t
2918
- n
2919
- x
2920
- 3
2921
- Alf
2922
- i
2923
- 18
2924
- 5
2925
- 7
2926
- 0
2927
- 56
2928
- 1
2929
- 47
2930
- 50
2931
- 2
2932
- 1
2933
- 15
2934
- 5
2935
- 56
2936
- 3
2937
- 47
2938
- 50
2939
- 4
2940
- 0
2941
- 11
2942
- I
2943
- 4
2944
- I
2945
- 0
2946
- I
2947
- 0
2948
- I
2949
- 0
2950
- I
2951
- -2
2952
- p
2953
- 5
2954
- x
2955
- 4
2956
- argv
2957
- M
2958
- 1
2959
- p
2960
- 2
2961
- x
2962
- 9
2963
- for_block
2964
- t
2965
- n
2966
- x
2967
- 3
2968
- Alf
2969
- i
2970
- 9
2971
- 7
2972
- 0
2973
- 64
2974
- 7
2975
- 1
2976
- 64
2977
- 35
2978
- 2
2979
- 11
2980
- I
2981
- 3
2982
- I
2983
- 0
2984
- I
2985
- 0
2986
- I
2987
- 0
2988
- I
2989
- -2
2990
- p
2991
- 2
2992
- s
2993
- 6
2994
- status
2995
- s
2996
- 2
2997
- 10
2998
- p
2999
- 3
3000
- I
3001
- 0
3002
- I
3003
- 48
3004
- I
3005
- 9
3006
- x
3007
- 69
3008
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3009
- p
3010
- 0
3011
- x
3012
- 3
3013
- let
3014
- M
3015
- 1
3016
- p
3017
- 2
3018
- x
3019
- 9
3020
- for_block
3021
- t
3022
- n
3023
- x
3024
- 3
3025
- Alf
3026
- i
3027
- 12
3028
- 5
3029
- 5
3030
- 2
3031
- 47
3032
- 49
3033
- 0
3034
- 1
3035
- 47
3036
- 49
3037
- 1
3038
- 1
3039
- 11
3040
- I
3041
- 4
3042
- I
3043
- 0
3044
- I
3045
- 0
3046
- I
3047
- 0
3048
- I
3049
- -2
3050
- p
3051
- 2
3052
- x
3053
- 3
3054
- eql
3055
- x
3056
- 6
3057
- should
3058
- p
3059
- 3
3060
- I
3061
- 0
3062
- I
3063
- 49
3064
- I
3065
- c
3066
- x
3067
- 69
3068
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3069
- p
3070
- 0
3071
- x
3072
- 2
3073
- it
3074
- p
3075
- 5
3076
- I
3077
- 0
3078
- I
3079
- 48
3080
- I
3081
- a
3082
- I
3083
- 49
3084
- I
3085
- 12
3086
- x
3087
- 69
3088
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3089
- p
3090
- 0
3091
- p
3092
- 7
3093
- I
3094
- 0
3095
- I
3096
- 3f
3097
- I
3098
- 8
3099
- I
3100
- 42
3101
- I
3102
- 13
3103
- I
3104
- 47
3105
- I
3106
- 1e
3107
- x
3108
- 69
3109
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3110
- p
3111
- 0
3112
- p
3113
- 7
3114
- I
3115
- 0
3116
- I
3117
- 5
3118
- I
3119
- a
3120
- I
3121
- 7
3122
- I
3123
- 15
3124
- I
3125
- 3e
3126
- I
3127
- 20
3128
- x
3129
- 69
3130
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3131
- p
3132
- 0
3133
- x
3134
- 8
3135
- describe
3136
- p
3137
- 3
3138
- I
3139
- 2
3140
- I
3141
- 3
3142
- I
3143
- d
3144
- x
3145
- 69
3146
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3147
- p
3148
- 0
3149
- x
3150
- 13
3151
- attach_method
3152
- p
3153
- 5
3154
- I
3155
- 0
3156
- I
3157
- 1
3158
- I
3159
- 9
3160
- I
3161
- 2
3162
- I
3163
- 25
3164
- x
3165
- 69
3166
- /home/blambeau/work/devel/alf/spec/unit/types/test_tuple_predicate.rb
3167
- p
3168
- 0