hamster 0.3.6 → 0.3.7

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