alf 0.10.0 → 0.10.1

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