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