immutable-ruby 0.0.4 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/immutable/_core.rb +3067 -0
- data/lib/immutable/core_ext/enumerable.rb +1 -1
- data/lib/immutable/core_ext/io.rb +1 -1
- data/lib/immutable/core_ext.rb +2 -2
- data/lib/immutable/deque.rb +17 -17
- data/lib/immutable/enumerable.rb +10 -10
- data/lib/immutable/hash.rb +4 -941
- data/lib/immutable/list.rb +36 -36
- data/lib/immutable/nested.rb +8 -8
- data/lib/immutable/set.rb +3 -583
- data/lib/immutable/sorted_set.rb +29 -27
- data/lib/immutable/trie.rb +2 -2
- data/lib/immutable/vector.rb +3 -1549
- data/lib/immutable/version.rb +1 -1
- data/lib/immutable.rb +9 -9
- metadata +34 -696
- data/lib/immutable/core_ext/struct.rb +0 -9
- data/spec/fixtures/io_spec.txt +0 -3
- data/spec/lib/immutable/core_ext/array_spec.rb +0 -13
- data/spec/lib/immutable/core_ext/enumerable_spec.rb +0 -29
- data/spec/lib/immutable/core_ext/io_spec.rb +0 -28
- data/spec/lib/immutable/deque/clear_spec.rb +0 -33
- data/spec/lib/immutable/deque/construction_spec.rb +0 -29
- data/spec/lib/immutable/deque/copying_spec.rb +0 -19
- data/spec/lib/immutable/deque/dequeue_spec.rb +0 -34
- data/spec/lib/immutable/deque/empty_spec.rb +0 -39
- data/spec/lib/immutable/deque/enqueue_spec.rb +0 -27
- data/spec/lib/immutable/deque/first_spec.rb +0 -17
- data/spec/lib/immutable/deque/inspect_spec.rb +0 -23
- data/spec/lib/immutable/deque/last_spec.rb +0 -17
- data/spec/lib/immutable/deque/marshal_spec.rb +0 -33
- data/spec/lib/immutable/deque/new_spec.rb +0 -43
- data/spec/lib/immutable/deque/pop_spec.rb +0 -36
- data/spec/lib/immutable/deque/pretty_print_spec.rb +0 -23
- data/spec/lib/immutable/deque/push_spec.rb +0 -36
- data/spec/lib/immutable/deque/random_modification_spec.rb +0 -33
- data/spec/lib/immutable/deque/rotate_spec.rb +0 -68
- data/spec/lib/immutable/deque/shift_spec.rb +0 -29
- data/spec/lib/immutable/deque/size_spec.rb +0 -19
- data/spec/lib/immutable/deque/to_a_spec.rb +0 -26
- data/spec/lib/immutable/deque/to_ary_spec.rb +0 -35
- data/spec/lib/immutable/deque/to_list_spec.rb +0 -24
- data/spec/lib/immutable/deque/unshift_spec.rb +0 -30
- data/spec/lib/immutable/hash/all_spec.rb +0 -53
- data/spec/lib/immutable/hash/any_spec.rb +0 -53
- data/spec/lib/immutable/hash/assoc_spec.rb +0 -51
- data/spec/lib/immutable/hash/clear_spec.rb +0 -42
- data/spec/lib/immutable/hash/construction_spec.rb +0 -38
- data/spec/lib/immutable/hash/copying_spec.rb +0 -13
- data/spec/lib/immutable/hash/default_proc_spec.rb +0 -72
- data/spec/lib/immutable/hash/delete_spec.rb +0 -39
- data/spec/lib/immutable/hash/dig_spec.rb +0 -34
- data/spec/lib/immutable/hash/each_spec.rb +0 -77
- data/spec/lib/immutable/hash/each_with_index_spec.rb +0 -29
- data/spec/lib/immutable/hash/empty_spec.rb +0 -43
- data/spec/lib/immutable/hash/eql_spec.rb +0 -75
- data/spec/lib/immutable/hash/except_spec.rb +0 -42
- data/spec/lib/immutable/hash/fetch_spec.rb +0 -57
- data/spec/lib/immutable/hash/fetch_values_spec.rb +0 -22
- data/spec/lib/immutable/hash/find_spec.rb +0 -43
- data/spec/lib/immutable/hash/flat_map_spec.rb +0 -35
- data/spec/lib/immutable/hash/flatten_spec.rb +0 -98
- data/spec/lib/immutable/hash/get_spec.rb +0 -79
- data/spec/lib/immutable/hash/has_key_spec.rb +0 -31
- data/spec/lib/immutable/hash/has_value_spec.rb +0 -27
- data/spec/lib/immutable/hash/hash_spec.rb +0 -29
- data/spec/lib/immutable/hash/inspect_spec.rb +0 -30
- data/spec/lib/immutable/hash/invert_spec.rb +0 -30
- data/spec/lib/immutable/hash/key_spec.rb +0 -27
- data/spec/lib/immutable/hash/keys_spec.rb +0 -15
- data/spec/lib/immutable/hash/map_spec.rb +0 -45
- data/spec/lib/immutable/hash/marshal_spec.rb +0 -28
- data/spec/lib/immutable/hash/merge_spec.rb +0 -82
- data/spec/lib/immutable/hash/min_max_spec.rb +0 -45
- data/spec/lib/immutable/hash/new_spec.rb +0 -70
- data/spec/lib/immutable/hash/none_spec.rb +0 -48
- data/spec/lib/immutable/hash/partition_spec.rb +0 -35
- data/spec/lib/immutable/hash/pretty_print_spec.rb +0 -34
- data/spec/lib/immutable/hash/put_spec.rb +0 -111
- data/spec/lib/immutable/hash/reduce_spec.rb +0 -35
- data/spec/lib/immutable/hash/reject_spec.rb +0 -61
- data/spec/lib/immutable/hash/reverse_each_spec.rb +0 -27
- data/spec/lib/immutable/hash/sample_spec.rb +0 -13
- data/spec/lib/immutable/hash/select_spec.rb +0 -57
- data/spec/lib/immutable/hash/size_spec.rb +0 -51
- data/spec/lib/immutable/hash/slice_spec.rb +0 -44
- data/spec/lib/immutable/hash/sort_spec.rb +0 -26
- data/spec/lib/immutable/hash/store_spec.rb +0 -75
- data/spec/lib/immutable/hash/subset_spec.rb +0 -42
- data/spec/lib/immutable/hash/superset_spec.rb +0 -42
- data/spec/lib/immutable/hash/take_spec.rb +0 -35
- data/spec/lib/immutable/hash/to_a_spec.rb +0 -13
- data/spec/lib/immutable/hash/to_hash_spec.rb +0 -21
- data/spec/lib/immutable/hash/to_proc_spec.rb +0 -39
- data/spec/lib/immutable/hash/update_in_spec.rb +0 -79
- data/spec/lib/immutable/hash/values_at_spec.rb +0 -33
- data/spec/lib/immutable/hash/values_spec.rb +0 -23
- data/spec/lib/immutable/list/add_spec.rb +0 -25
- data/spec/lib/immutable/list/all_spec.rb +0 -57
- data/spec/lib/immutable/list/any_spec.rb +0 -49
- data/spec/lib/immutable/list/append_spec.rb +0 -38
- data/spec/lib/immutable/list/at_spec.rb +0 -29
- data/spec/lib/immutable/list/break_spec.rb +0 -69
- data/spec/lib/immutable/list/cadr_spec.rb +0 -38
- data/spec/lib/immutable/list/chunk_spec.rb +0 -28
- data/spec/lib/immutable/list/clear_spec.rb +0 -24
- data/spec/lib/immutable/list/combination_spec.rb +0 -33
- data/spec/lib/immutable/list/compact_spec.rb +0 -34
- data/spec/lib/immutable/list/compare_spec.rb +0 -30
- data/spec/lib/immutable/list/cons_spec.rb +0 -25
- data/spec/lib/immutable/list/construction_spec.rb +0 -110
- data/spec/lib/immutable/list/copying_spec.rb +0 -19
- data/spec/lib/immutable/list/count_spec.rb +0 -36
- data/spec/lib/immutable/list/cycle_spec.rb +0 -28
- data/spec/lib/immutable/list/delete_at_spec.rb +0 -18
- data/spec/lib/immutable/list/delete_spec.rb +0 -16
- data/spec/lib/immutable/list/drop_spec.rb +0 -30
- data/spec/lib/immutable/list/drop_while_spec.rb +0 -38
- data/spec/lib/immutable/list/each_slice_spec.rb +0 -51
- data/spec/lib/immutable/list/each_spec.rb +0 -40
- data/spec/lib/immutable/list/each_with_index_spec.rb +0 -28
- data/spec/lib/immutable/list/empty_spec.rb +0 -23
- data/spec/lib/immutable/list/eql_spec.rb +0 -61
- data/spec/lib/immutable/list/fill_spec.rb +0 -49
- data/spec/lib/immutable/list/find_all_spec.rb +0 -70
- data/spec/lib/immutable/list/find_index_spec.rb +0 -35
- data/spec/lib/immutable/list/find_spec.rb +0 -42
- data/spec/lib/immutable/list/flat_map_spec.rb +0 -51
- data/spec/lib/immutable/list/flatten_spec.rb +0 -30
- data/spec/lib/immutable/list/grep_spec.rb +0 -46
- data/spec/lib/immutable/list/group_by_spec.rb +0 -41
- data/spec/lib/immutable/list/hash_spec.rb +0 -21
- data/spec/lib/immutable/list/head_spec.rb +0 -19
- data/spec/lib/immutable/list/include_spec.rb +0 -35
- data/spec/lib/immutable/list/index_spec.rb +0 -37
- data/spec/lib/immutable/list/indices_spec.rb +0 -61
- data/spec/lib/immutable/list/init_spec.rb +0 -28
- data/spec/lib/immutable/list/inits_spec.rb +0 -28
- data/spec/lib/immutable/list/insert_spec.rb +0 -46
- data/spec/lib/immutable/list/inspect_spec.rb +0 -29
- data/spec/lib/immutable/list/intersperse_spec.rb +0 -28
- data/spec/lib/immutable/list/join_spec.rb +0 -63
- data/spec/lib/immutable/list/last_spec.rb +0 -23
- data/spec/lib/immutable/list/ltlt_spec.rb +0 -19
- data/spec/lib/immutable/list/map_spec.rb +0 -45
- data/spec/lib/immutable/list/maximum_spec.rb +0 -39
- data/spec/lib/immutable/list/merge_by_spec.rb +0 -51
- data/spec/lib/immutable/list/merge_spec.rb +0 -59
- data/spec/lib/immutable/list/minimum_spec.rb +0 -39
- data/spec/lib/immutable/list/multithreading_spec.rb +0 -47
- data/spec/lib/immutable/list/none_spec.rb +0 -47
- data/spec/lib/immutable/list/one_spec.rb +0 -49
- data/spec/lib/immutable/list/partition_spec.rb +0 -115
- data/spec/lib/immutable/list/permutation_spec.rb +0 -55
- data/spec/lib/immutable/list/pop_spec.rb +0 -25
- data/spec/lib/immutable/list/product_spec.rb +0 -23
- data/spec/lib/immutable/list/reduce_spec.rb +0 -53
- data/spec/lib/immutable/list/reject_spec.rb +0 -45
- data/spec/lib/immutable/list/reverse_spec.rb +0 -34
- data/spec/lib/immutable/list/rotate_spec.rb +0 -36
- data/spec/lib/immutable/list/sample_spec.rb +0 -13
- data/spec/lib/immutable/list/select_spec.rb +0 -70
- data/spec/lib/immutable/list/size_spec.rb +0 -25
- data/spec/lib/immutable/list/slice_spec.rb +0 -229
- data/spec/lib/immutable/list/sorting_spec.rb +0 -46
- data/spec/lib/immutable/list/span_spec.rb +0 -76
- data/spec/lib/immutable/list/split_at_spec.rb +0 -43
- data/spec/lib/immutable/list/subsequences_spec.rb +0 -23
- data/spec/lib/immutable/list/sum_spec.rb +0 -23
- data/spec/lib/immutable/list/tail_spec.rb +0 -30
- data/spec/lib/immutable/list/tails_spec.rb +0 -28
- data/spec/lib/immutable/list/take_spec.rb +0 -30
- data/spec/lib/immutable/list/take_while_spec.rb +0 -46
- data/spec/lib/immutable/list/to_a_spec.rb +0 -39
- data/spec/lib/immutable/list/to_ary_spec.rb +0 -41
- data/spec/lib/immutable/list/to_list_spec.rb +0 -19
- data/spec/lib/immutable/list/to_set_spec.rb +0 -17
- data/spec/lib/immutable/list/transpose_spec.rb +0 -19
- data/spec/lib/immutable/list/union_spec.rb +0 -31
- data/spec/lib/immutable/list/uniq_spec.rb +0 -35
- data/spec/lib/immutable/list/zip_spec.rb +0 -23
- data/spec/lib/immutable/nested/construction_spec.rb +0 -101
- data/spec/lib/immutable/set/add_spec.rb +0 -77
- data/spec/lib/immutable/set/all_spec.rb +0 -51
- data/spec/lib/immutable/set/any_spec.rb +0 -51
- data/spec/lib/immutable/set/clear_spec.rb +0 -33
- data/spec/lib/immutable/set/compact_spec.rb +0 -30
- data/spec/lib/immutable/set/construction_spec.rb +0 -18
- data/spec/lib/immutable/set/copying_spec.rb +0 -13
- data/spec/lib/immutable/set/count_spec.rb +0 -36
- data/spec/lib/immutable/set/delete_spec.rb +0 -71
- data/spec/lib/immutable/set/difference_spec.rb +0 -49
- data/spec/lib/immutable/set/disjoint_spec.rb +0 -25
- data/spec/lib/immutable/set/each_spec.rb +0 -45
- data/spec/lib/immutable/set/empty_spec.rb +0 -44
- data/spec/lib/immutable/set/eqeq_spec.rb +0 -103
- data/spec/lib/immutable/set/eql_spec.rb +0 -109
- data/spec/lib/immutable/set/exclusion_spec.rb +0 -47
- data/spec/lib/immutable/set/find_spec.rb +0 -35
- data/spec/lib/immutable/set/first_spec.rb +0 -28
- data/spec/lib/immutable/set/flatten_spec.rb +0 -46
- data/spec/lib/immutable/set/grep_spec.rb +0 -57
- data/spec/lib/immutable/set/grep_v_spec.rb +0 -59
- data/spec/lib/immutable/set/group_by_spec.rb +0 -59
- data/spec/lib/immutable/set/hash_spec.rb +0 -22
- data/spec/lib/immutable/set/include_spec.rb +0 -60
- data/spec/lib/immutable/set/inspect_spec.rb +0 -47
- data/spec/lib/immutable/set/intersect_spec.rb +0 -25
- data/spec/lib/immutable/set/intersection_spec.rb +0 -52
- data/spec/lib/immutable/set/join_spec.rb +0 -64
- data/spec/lib/immutable/set/map_spec.rb +0 -59
- data/spec/lib/immutable/set/marshal_spec.rb +0 -28
- data/spec/lib/immutable/set/maximum_spec.rb +0 -36
- data/spec/lib/immutable/set/minimum_spec.rb +0 -36
- data/spec/lib/immutable/set/new_spec.rb +0 -53
- data/spec/lib/immutable/set/none_spec.rb +0 -47
- data/spec/lib/immutable/set/one_spec.rb +0 -47
- data/spec/lib/immutable/set/partition_spec.rb +0 -52
- data/spec/lib/immutable/set/product_spec.rb +0 -23
- data/spec/lib/immutable/set/reduce_spec.rb +0 -55
- data/spec/lib/immutable/set/reject_spec.rb +0 -50
- data/spec/lib/immutable/set/reverse_each_spec.rb +0 -38
- data/spec/lib/immutable/set/sample_spec.rb +0 -13
- data/spec/lib/immutable/set/select_spec.rb +0 -73
- data/spec/lib/immutable/set/size_spec.rb +0 -17
- data/spec/lib/immutable/set/sorting_spec.rb +0 -65
- data/spec/lib/immutable/set/subset_spec.rb +0 -51
- data/spec/lib/immutable/set/sum_spec.rb +0 -23
- data/spec/lib/immutable/set/superset_spec.rb +0 -51
- data/spec/lib/immutable/set/to_a_spec.rb +0 -30
- data/spec/lib/immutable/set/to_list_spec.rb +0 -35
- data/spec/lib/immutable/set/to_set_spec.rb +0 -19
- data/spec/lib/immutable/set/union_spec.rb +0 -63
- data/spec/lib/immutable/sorted_set/above_spec.rb +0 -51
- data/spec/lib/immutable/sorted_set/add_spec.rb +0 -62
- data/spec/lib/immutable/sorted_set/at_spec.rb +0 -24
- data/spec/lib/immutable/sorted_set/below_spec.rb +0 -51
- data/spec/lib/immutable/sorted_set/between_spec.rb +0 -51
- data/spec/lib/immutable/sorted_set/clear_spec.rb +0 -43
- data/spec/lib/immutable/sorted_set/copying_spec.rb +0 -20
- data/spec/lib/immutable/sorted_set/delete_at_spec.rb +0 -18
- data/spec/lib/immutable/sorted_set/delete_spec.rb +0 -89
- data/spec/lib/immutable/sorted_set/difference_spec.rb +0 -22
- data/spec/lib/immutable/sorted_set/disjoint_spec.rb +0 -25
- data/spec/lib/immutable/sorted_set/drop_spec.rb +0 -55
- data/spec/lib/immutable/sorted_set/drop_while_spec.rb +0 -34
- data/spec/lib/immutable/sorted_set/each_spec.rb +0 -28
- data/spec/lib/immutable/sorted_set/empty_spec.rb +0 -34
- data/spec/lib/immutable/sorted_set/eql_spec.rb +0 -120
- data/spec/lib/immutable/sorted_set/exclusion_spec.rb +0 -22
- data/spec/lib/immutable/sorted_set/fetch_spec.rb +0 -64
- data/spec/lib/immutable/sorted_set/find_index_spec.rb +0 -40
- data/spec/lib/immutable/sorted_set/first_spec.rb +0 -18
- data/spec/lib/immutable/sorted_set/from_spec.rb +0 -51
- data/spec/lib/immutable/sorted_set/group_by_spec.rb +0 -57
- data/spec/lib/immutable/sorted_set/include_spec.rb +0 -23
- data/spec/lib/immutable/sorted_set/inspect_spec.rb +0 -37
- data/spec/lib/immutable/sorted_set/intersect_spec.rb +0 -25
- data/spec/lib/immutable/sorted_set/intersection_spec.rb +0 -28
- data/spec/lib/immutable/sorted_set/last_spec.rb +0 -36
- data/spec/lib/immutable/sorted_set/map_spec.rb +0 -51
- data/spec/lib/immutable/sorted_set/marshal_spec.rb +0 -36
- data/spec/lib/immutable/sorted_set/maximum_spec.rb +0 -36
- data/spec/lib/immutable/sorted_set/minimum_spec.rb +0 -19
- data/spec/lib/immutable/sorted_set/new_spec.rb +0 -137
- data/spec/lib/immutable/sorted_set/reverse_each_spec.rb +0 -28
- data/spec/lib/immutable/sorted_set/sample_spec.rb +0 -13
- data/spec/lib/immutable/sorted_set/select_spec.rb +0 -61
- data/spec/lib/immutable/sorted_set/size_spec.rb +0 -17
- data/spec/lib/immutable/sorted_set/slice_spec.rb +0 -256
- data/spec/lib/immutable/sorted_set/sorting_spec.rb +0 -56
- data/spec/lib/immutable/sorted_set/subset_spec.rb +0 -47
- data/spec/lib/immutable/sorted_set/superset_spec.rb +0 -47
- data/spec/lib/immutable/sorted_set/take_spec.rb +0 -54
- data/spec/lib/immutable/sorted_set/take_while_spec.rb +0 -33
- data/spec/lib/immutable/sorted_set/to_set_spec.rb +0 -17
- data/spec/lib/immutable/sorted_set/union_spec.rb +0 -58
- data/spec/lib/immutable/sorted_set/up_to_spec.rb +0 -52
- data/spec/lib/immutable/sorted_set/util_spec.rb +0 -48
- data/spec/lib/immutable/sorted_set/values_at_spec.rb +0 -33
- data/spec/lib/immutable/vector/add_spec.rb +0 -67
- data/spec/lib/immutable/vector/any_spec.rb +0 -69
- data/spec/lib/immutable/vector/assoc_spec.rb +0 -45
- data/spec/lib/immutable/vector/bsearch_spec.rb +0 -65
- data/spec/lib/immutable/vector/clear_spec.rb +0 -33
- data/spec/lib/immutable/vector/combination_spec.rb +0 -81
- data/spec/lib/immutable/vector/compact_spec.rb +0 -29
- data/spec/lib/immutable/vector/compare_spec.rb +0 -31
- data/spec/lib/immutable/vector/concat_spec.rb +0 -34
- data/spec/lib/immutable/vector/copying_spec.rb +0 -20
- data/spec/lib/immutable/vector/count_spec.rb +0 -17
- data/spec/lib/immutable/vector/delete_at_spec.rb +0 -53
- data/spec/lib/immutable/vector/delete_spec.rb +0 -30
- data/spec/lib/immutable/vector/dig_spec.rb +0 -30
- data/spec/lib/immutable/vector/drop_spec.rb +0 -41
- data/spec/lib/immutable/vector/drop_while_spec.rb +0 -54
- data/spec/lib/immutable/vector/each_index_spec.rb +0 -40
- data/spec/lib/immutable/vector/each_spec.rb +0 -44
- data/spec/lib/immutable/vector/each_with_index_spec.rb +0 -39
- data/spec/lib/immutable/vector/empty_spec.rb +0 -41
- data/spec/lib/immutable/vector/eql_spec.rb +0 -76
- data/spec/lib/immutable/vector/fetch_spec.rb +0 -64
- data/spec/lib/immutable/vector/fill_spec.rb +0 -88
- data/spec/lib/immutable/vector/first_spec.rb +0 -18
- data/spec/lib/immutable/vector/flat_map_spec.rb +0 -50
- data/spec/lib/immutable/vector/flatten_spec.rb +0 -58
- data/spec/lib/immutable/vector/get_spec.rb +0 -74
- data/spec/lib/immutable/vector/group_by_spec.rb +0 -57
- data/spec/lib/immutable/vector/include_spec.rb +0 -30
- data/spec/lib/immutable/vector/insert_spec.rb +0 -68
- data/spec/lib/immutable/vector/inspect_spec.rb +0 -49
- data/spec/lib/immutable/vector/join_spec.rb +0 -58
- data/spec/lib/immutable/vector/last_spec.rb +0 -45
- data/spec/lib/immutable/vector/length_spec.rb +0 -45
- data/spec/lib/immutable/vector/ltlt_spec.rb +0 -65
- data/spec/lib/immutable/vector/map_spec.rb +0 -51
- data/spec/lib/immutable/vector/marshal_spec.rb +0 -31
- data/spec/lib/immutable/vector/maximum_spec.rb +0 -33
- data/spec/lib/immutable/vector/minimum_spec.rb +0 -33
- data/spec/lib/immutable/vector/multiply_spec.rb +0 -47
- data/spec/lib/immutable/vector/new_spec.rb +0 -50
- data/spec/lib/immutable/vector/partition_spec.rb +0 -52
- data/spec/lib/immutable/vector/permutation_spec.rb +0 -91
- data/spec/lib/immutable/vector/pop_spec.rb +0 -26
- data/spec/lib/immutable/vector/product_spec.rb +0 -70
- data/spec/lib/immutable/vector/reduce_spec.rb +0 -55
- data/spec/lib/immutable/vector/reject_spec.rb +0 -43
- data/spec/lib/immutable/vector/repeated_combination_spec.rb +0 -77
- data/spec/lib/immutable/vector/repeated_permutation_spec.rb +0 -93
- data/spec/lib/immutable/vector/reverse_each_spec.rb +0 -31
- data/spec/lib/immutable/vector/reverse_spec.rb +0 -21
- data/spec/lib/immutable/vector/rindex_spec.rb +0 -36
- data/spec/lib/immutable/vector/rotate_spec.rb +0 -73
- data/spec/lib/immutable/vector/sample_spec.rb +0 -13
- data/spec/lib/immutable/vector/select_spec.rb +0 -63
- data/spec/lib/immutable/vector/set_spec.rb +0 -174
- data/spec/lib/immutable/vector/shift_spec.rb +0 -27
- data/spec/lib/immutable/vector/shuffle_spec.rb +0 -43
- data/spec/lib/immutable/vector/slice_spec.rb +0 -240
- data/spec/lib/immutable/vector/sorting_spec.rb +0 -56
- data/spec/lib/immutable/vector/sum_spec.rb +0 -17
- data/spec/lib/immutable/vector/take_spec.rb +0 -42
- data/spec/lib/immutable/vector/take_while_spec.rb +0 -34
- data/spec/lib/immutable/vector/to_a_spec.rb +0 -41
- data/spec/lib/immutable/vector/to_ary_spec.rb +0 -34
- data/spec/lib/immutable/vector/to_list_spec.rb +0 -30
- data/spec/lib/immutable/vector/to_set_spec.rb +0 -21
- data/spec/lib/immutable/vector/transpose_spec.rb +0 -48
- data/spec/lib/immutable/vector/uniq_spec.rb +0 -76
- data/spec/lib/immutable/vector/unshift_spec.rb +0 -28
- data/spec/lib/immutable/vector/update_in_spec.rb +0 -82
- data/spec/lib/immutable/vector/values_at_spec.rb +0 -33
- data/spec/lib/immutable/vector/zip_spec.rb +0 -57
- data/spec/lib/load_spec.rb +0 -42
- data/spec/spec_helper.rb +0 -96
@@ -1,35 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
[:include?, :member?].each do |method|
|
5
|
-
describe "##{method}" do
|
6
|
-
context "on a really big list" do
|
7
|
-
it "doesn't run out of stack" do
|
8
|
-
-> { BigList.send(method, nil) }.should_not raise_error
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
[
|
13
|
-
[[], "A", false],
|
14
|
-
[[], nil, false],
|
15
|
-
[["A"], "A", true],
|
16
|
-
[["A"], "B", false],
|
17
|
-
[["A"], nil, false],
|
18
|
-
[["A", "B", nil], "A", true],
|
19
|
-
[["A", "B", nil], "B", true],
|
20
|
-
[["A", "B", nil], nil, true],
|
21
|
-
[["A", "B", nil], "C", false],
|
22
|
-
[[2], 2, true],
|
23
|
-
[[2], 2.0, true],
|
24
|
-
[[2.0], 2.0, true],
|
25
|
-
[[2.0], 2, true],
|
26
|
-
].each do |values, item, expected|
|
27
|
-
context "on #{values.inspect}" do
|
28
|
-
it "returns #{expected.inspect}" do
|
29
|
-
L[*values].send(method, item).should == expected
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#index" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.index(nil) }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
[
|
12
|
-
[[], "A", nil],
|
13
|
-
[[], nil, nil],
|
14
|
-
[["A"], "A", 0],
|
15
|
-
[["A"], "B", nil],
|
16
|
-
[["A"], nil, nil],
|
17
|
-
[["A", "B", nil], "A", 0],
|
18
|
-
[["A", "B", nil], "B", 1],
|
19
|
-
[["A", "B", nil], nil, 2],
|
20
|
-
[["A", "B", nil], "C", nil],
|
21
|
-
[[2], 2, 0],
|
22
|
-
[[2], 2.0, 0],
|
23
|
-
[[2.0], 2.0, 0],
|
24
|
-
[[2.0], 2, 0],
|
25
|
-
].each do |values, item, expected|
|
26
|
-
context "looking for #{item.inspect} in #{values.inspect}" do
|
27
|
-
it "returns #{expected.inspect}" do
|
28
|
-
if RUBY_ENGINE == 'jruby' && RUBY_VERSION <= '2.2.2' && values[0].is_a?(Fixnum) && item.is_a?(Float)
|
29
|
-
skip "On JRuby, Enumerable#find_index doesn't test equality properly"
|
30
|
-
else
|
31
|
-
L[*values].index(item).should == expected
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#indices" do
|
5
|
-
context "when called with a block" do
|
6
|
-
it "is lazy" do
|
7
|
-
count = 0
|
8
|
-
Immutable.stream { count += 1 }.indices { |item| true }
|
9
|
-
count.should <= 1
|
10
|
-
end
|
11
|
-
|
12
|
-
context "on a large list which doesn't contain desired item" do
|
13
|
-
it "doesn't blow the stack" do
|
14
|
-
-> { BigList.indices { |x| x < 0 }.size }.should_not raise_error
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
[
|
19
|
-
[[], "A", []],
|
20
|
-
[["A"], "B", []],
|
21
|
-
[%w[A B A], "B", [1]],
|
22
|
-
[%w[A B A], "A", [0, 2]],
|
23
|
-
[[2], 2, [0]],
|
24
|
-
[[2], 2.0, [0]],
|
25
|
-
[[2.0], 2.0, [0]],
|
26
|
-
[[2.0], 2, [0]],
|
27
|
-
].each do |values, item, expected|
|
28
|
-
context "looking for #{item.inspect} in #{values.inspect}" do
|
29
|
-
it "returns #{expected.inspect}" do
|
30
|
-
L[*values].indices { |x| x == item }.should eql(L[*expected])
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
context "when called with a single argument" do
|
37
|
-
it "is lazy" do
|
38
|
-
count = 0
|
39
|
-
Immutable.stream { count += 1 }.indices(nil)
|
40
|
-
count.should <= 1
|
41
|
-
end
|
42
|
-
|
43
|
-
[
|
44
|
-
[[], "A", []],
|
45
|
-
[["A"], "B", []],
|
46
|
-
[%w[A B A], "B", [1]],
|
47
|
-
[%w[A B A], "A", [0, 2]],
|
48
|
-
[[2], 2, [0]],
|
49
|
-
[[2], 2.0, [0]],
|
50
|
-
[[2.0], 2.0, [0]],
|
51
|
-
[[2.0], 2, [0]],
|
52
|
-
].each do |values, item, expected|
|
53
|
-
context "looking for #{item.inspect} in #{values.inspect}" do
|
54
|
-
it "returns #{expected.inspect}" do
|
55
|
-
L[*values].indices(item).should eql(L[*expected])
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#init" do
|
5
|
-
it "is lazy" do
|
6
|
-
-> { Immutable.stream { false }.init }.should_not raise_error
|
7
|
-
end
|
8
|
-
|
9
|
-
[
|
10
|
-
[[], []],
|
11
|
-
[["A"], []],
|
12
|
-
[%w[A B C], %w[A B]],
|
13
|
-
].each do |values, expected|
|
14
|
-
context "on #{values.inspect}" do
|
15
|
-
let(:list) { L[*values] }
|
16
|
-
|
17
|
-
it "preserves the original" do
|
18
|
-
list.init
|
19
|
-
list.should eql(L[*values])
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns the list without the last element: #{expected.inspect}" do
|
23
|
-
list.init.should eql(L[*expected])
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#inits" do
|
5
|
-
it "is lazy" do
|
6
|
-
-> { Immutable.stream { fail }.inits }.should_not raise_error
|
7
|
-
end
|
8
|
-
|
9
|
-
[
|
10
|
-
[[], []],
|
11
|
-
[["A"], [L["A"]]],
|
12
|
-
[%w[A B C], [L["A"], L["A", "B"], L["A", "B", "C"]]],
|
13
|
-
].each do |values, expected|
|
14
|
-
context "on #{values.inspect}" do
|
15
|
-
let(:list) { L[*values] }
|
16
|
-
|
17
|
-
it "preserves the original" do
|
18
|
-
list.inits
|
19
|
-
list.should eql(L[*values])
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns #{expected.inspect}" do
|
23
|
-
list.inits.should eql(L[*expected])
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,46 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#insert" do
|
5
|
-
let(:original) { L[1, 2, 3] }
|
6
|
-
|
7
|
-
it "can add items at the beginning of a list" do
|
8
|
-
list = original.insert(0, :a, :b)
|
9
|
-
list.size.should be(5)
|
10
|
-
list.at(0).should be(:a)
|
11
|
-
list.at(2).should be(1)
|
12
|
-
end
|
13
|
-
|
14
|
-
it "can add items in the middle of a list" do
|
15
|
-
list = original.insert(1, :a, :b, :c)
|
16
|
-
list.size.should be(6)
|
17
|
-
list.to_a.should == [1, :a, :b, :c, 2, 3]
|
18
|
-
end
|
19
|
-
|
20
|
-
it "can add items at the end of a list" do
|
21
|
-
list = original.insert(3, :a, :b, :c)
|
22
|
-
list.size.should be(6)
|
23
|
-
list.to_a.should == [1, 2, 3, :a, :b, :c]
|
24
|
-
end
|
25
|
-
|
26
|
-
it "can add items past the end of a list" do
|
27
|
-
list = original.insert(6, :a, :b)
|
28
|
-
list.size.should be(8)
|
29
|
-
list.to_a.should == [1, 2, 3, nil, nil, nil, :a, :b]
|
30
|
-
end
|
31
|
-
|
32
|
-
it "accepts a negative index, which counts back from the end of the list" do
|
33
|
-
list = original.insert(-2, :a)
|
34
|
-
list.size.should be(4)
|
35
|
-
list.to_a.should == [1, :a, 2, 3]
|
36
|
-
end
|
37
|
-
|
38
|
-
it "raises IndexError if a negative index is too great" do
|
39
|
-
expect { original.insert(-4, :a) }.to raise_error(IndexError)
|
40
|
-
end
|
41
|
-
|
42
|
-
it "is lazy" do
|
43
|
-
-> { Immutable.stream { fail }.insert(0, :a) }.should_not raise_error
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#inspect" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.inspect }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
[
|
12
|
-
[[], 'Immutable::List[]'],
|
13
|
-
[["A"], 'Immutable::List["A"]'],
|
14
|
-
[%w[A B C], 'Immutable::List["A", "B", "C"]']
|
15
|
-
].each do |values, expected|
|
16
|
-
context "on #{values.inspect}" do
|
17
|
-
let(:list) { L[*values] }
|
18
|
-
|
19
|
-
it "returns #{expected.inspect}" do
|
20
|
-
list.inspect.should == expected
|
21
|
-
end
|
22
|
-
|
23
|
-
it "returns a string which can be eval'd to get an equivalent object" do
|
24
|
-
eval(list.inspect).should eql(list)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#intersperse" do
|
5
|
-
it "is lazy" do
|
6
|
-
-> { Immutable.stream { fail }.intersperse("") }.should_not raise_error
|
7
|
-
end
|
8
|
-
|
9
|
-
[
|
10
|
-
[[], []],
|
11
|
-
[["A"], ["A"]],
|
12
|
-
[%w[A B C], ["A", "|", "B", "|", "C"]]
|
13
|
-
].each do |values, expected|
|
14
|
-
context "on #{values.inspect}" do
|
15
|
-
let(:list) { L[*values] }
|
16
|
-
|
17
|
-
it "preserves the original" do
|
18
|
-
list.intersperse("|")
|
19
|
-
list.should eql(L[*values])
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns #{expected.inspect}" do
|
23
|
-
list.intersperse("|").should eql(L[*expected])
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
@@ -1,63 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#join" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.join }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
context "with a separator" do
|
12
|
-
[
|
13
|
-
[[], ""],
|
14
|
-
[["A"], "A"],
|
15
|
-
[%w[A B C], "A|B|C"]
|
16
|
-
].each do |values, expected|
|
17
|
-
context "on #{values.inspect}" do
|
18
|
-
let(:list) { L[*values] }
|
19
|
-
|
20
|
-
it "preserves the original" do
|
21
|
-
list.join("|")
|
22
|
-
list.should eql(L[*values])
|
23
|
-
end
|
24
|
-
|
25
|
-
it "returns #{expected.inspect}" do
|
26
|
-
list.join("|").should == expected
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "without a separator" do
|
33
|
-
[
|
34
|
-
[[], ""],
|
35
|
-
[["A"], "A"],
|
36
|
-
[%w[A B C], "ABC"]
|
37
|
-
].each do |values, expected|
|
38
|
-
context "on #{values.inspect}" do
|
39
|
-
let(:list) { L[*values] }
|
40
|
-
|
41
|
-
it "preserves the original" do
|
42
|
-
list.join
|
43
|
-
list.should eql(L[*values])
|
44
|
-
end
|
45
|
-
|
46
|
-
it "returns #{expected.inspect}" do
|
47
|
-
list.join.should == expected
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
context "without a separator (with global default separator set)" do
|
54
|
-
before { $, = '**' }
|
55
|
-
let(:list) { L["A", "B", "C"] }
|
56
|
-
after { $, = nil }
|
57
|
-
|
58
|
-
it "uses the default global separator" do
|
59
|
-
list.join.should == "A**B**C"
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#last" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.last }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
[
|
12
|
-
[[], nil],
|
13
|
-
[["A"], "A"],
|
14
|
-
[%w[A B C], "C"],
|
15
|
-
].each do |values, expected|
|
16
|
-
context "on #{values.inspect}" do
|
17
|
-
it "returns #{expected.inspect}" do
|
18
|
-
L[*values].last.should == expected
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#<<" do
|
5
|
-
it "adds an item onto the end of a list" do
|
6
|
-
list = L["a", "b"]
|
7
|
-
(list << "c").should eql(L["a", "b", "c"])
|
8
|
-
list.should eql(L["a", "b"])
|
9
|
-
end
|
10
|
-
|
11
|
-
context "on an empty list" do
|
12
|
-
it "returns a list with one item" do
|
13
|
-
list = L.empty
|
14
|
-
(list << "c").should eql(L["c"])
|
15
|
-
list.should eql(L.empty)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
[:map, :collect].each do |method|
|
5
|
-
describe "##{method}" do
|
6
|
-
it "is lazy" do
|
7
|
-
-> { Immutable.stream { fail }.map { |item| item } }.should_not raise_error
|
8
|
-
end
|
9
|
-
|
10
|
-
[
|
11
|
-
[[], []],
|
12
|
-
[["A"], ["a"]],
|
13
|
-
[%w[A B C], %w[a b c]],
|
14
|
-
].each do |values, expected|
|
15
|
-
context "on #{values.inspect}" do
|
16
|
-
let(:list) { L[*values] }
|
17
|
-
|
18
|
-
context "with a block" do
|
19
|
-
it "preserves the original" do
|
20
|
-
list.send(method, &:downcase)
|
21
|
-
list.should eql(L[*values])
|
22
|
-
end
|
23
|
-
|
24
|
-
it "returns #{expected.inspect}" do
|
25
|
-
list.send(method, &:downcase).should eql(L[*expected])
|
26
|
-
end
|
27
|
-
|
28
|
-
it "is lazy" do
|
29
|
-
count = 0
|
30
|
-
list.send(method) { |item| count += 1 }
|
31
|
-
count.should <= 1
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
context "without a block" do
|
36
|
-
it "returns an Enumerator" do
|
37
|
-
list.send(method).class.should be(Enumerator)
|
38
|
-
list.send(method).each(&:downcase).should eql(L[*expected])
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#max" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.max }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
context "with a block" do
|
12
|
-
[
|
13
|
-
[[], nil],
|
14
|
-
[["A"], "A"],
|
15
|
-
[%w[Ichi Ni San], "Ichi"],
|
16
|
-
].each do |values, expected|
|
17
|
-
context "on #{values.inspect}" do
|
18
|
-
it "returns #{expected.inspect}" do
|
19
|
-
L[*values].max { |maximum, item| maximum.length <=> item.length }.should == expected
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
context "without a block" do
|
26
|
-
[
|
27
|
-
[[], nil],
|
28
|
-
[["A"], "A"],
|
29
|
-
[%w[Ichi Ni San], "San"],
|
30
|
-
].each do |values, expected|
|
31
|
-
context "on #{values.inspect}" do
|
32
|
-
it "returns #{expected.inspect}" do
|
33
|
-
L[*values].max.should == expected
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,51 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
context "without a comparator" do
|
5
|
-
context "on an empty list" do
|
6
|
-
it "returns an empty list" do
|
7
|
-
L.empty.merge_by.should be_empty
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
context "on a single list" do
|
12
|
-
let(:list) { L[1, 2, 3] }
|
13
|
-
|
14
|
-
it "returns the list" do
|
15
|
-
L[list].merge_by.should eql(list)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context "with multiple lists" do
|
20
|
-
subject { L[L[3, 6, 7, 8], L[1, 2, 4, 5, 9]] }
|
21
|
-
|
22
|
-
it "merges the lists based on natural sort order" do
|
23
|
-
subject.merge_by.should == L[1, 2, 3, 4, 5, 6, 7, 8, 9]
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
context "with a comparator" do
|
29
|
-
context "on an empty list" do
|
30
|
-
it "returns an empty list" do
|
31
|
-
L.empty.merge_by { |item| fail("should never be called") }.should be_empty
|
32
|
-
end
|
33
|
-
end
|
34
|
-
|
35
|
-
context "on a single list" do
|
36
|
-
let(:list) { L[1, 2, 3] }
|
37
|
-
|
38
|
-
it "returns the list" do
|
39
|
-
L[list].merge_by { |item| -item }.should == L[1, 2, 3]
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context "with multiple lists" do
|
44
|
-
subject { L[L[8, 7, 6, 3], L[9, 5, 4, 2, 1]] }
|
45
|
-
|
46
|
-
it "merges the lists based on the specified transformer" do
|
47
|
-
subject.merge_by { |item| -item }.should == L[9, 8, 7, 6, 5, 4, 3, 2, 1]
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
@@ -1,59 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
context "without a comparator" do
|
5
|
-
context "on an empty list" do
|
6
|
-
subject { L.empty }
|
7
|
-
|
8
|
-
it "returns an empty list" do
|
9
|
-
subject.merge.should be_empty
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
context "on a single list" do
|
14
|
-
let(:list) { L[1, 2, 3] }
|
15
|
-
|
16
|
-
subject { L[list] }
|
17
|
-
|
18
|
-
it "returns the list" do
|
19
|
-
subject.merge.should == list
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
context "with multiple lists" do
|
24
|
-
subject { L[L[3, 6, 7, 8], L[1, 2, 4, 5, 9]] }
|
25
|
-
|
26
|
-
it "merges the lists based on natural sort order" do
|
27
|
-
subject.merge.should == L[1, 2, 3, 4, 5, 6, 7, 8, 9]
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "with a comparator" do
|
33
|
-
context "on an empty list" do
|
34
|
-
subject { L.empty }
|
35
|
-
|
36
|
-
it "returns an empty list" do
|
37
|
-
subject.merge { |a, b| fail("should never be called") }.should be_empty
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
context "on a single list" do
|
42
|
-
let(:list) { L[1, 2, 3] }
|
43
|
-
|
44
|
-
subject { L[list] }
|
45
|
-
|
46
|
-
it "returns the list" do
|
47
|
-
subject.merge { |a, b| fail("should never be called") }.should == list
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context "with multiple lists" do
|
52
|
-
subject { L[L[8, 7, 6, 3], L[9, 5, 4, 2, 1]] }
|
53
|
-
|
54
|
-
it "merges the lists based on the specified comparator" do
|
55
|
-
subject.merge { |a, b| b <=> a }.should == L[9, 8, 7, 6, 5, 4, 3, 2, 1]
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Immutable::List do
|
4
|
-
describe "#min" do
|
5
|
-
context "on a really big list" do
|
6
|
-
it "doesn't run out of stack" do
|
7
|
-
-> { BigList.min }.should_not raise_error
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
context "with a block" do
|
12
|
-
[
|
13
|
-
[[], nil],
|
14
|
-
[["A"], "A"],
|
15
|
-
[%w[Ichi Ni San], "Ni"],
|
16
|
-
].each do |values, expected|
|
17
|
-
context "on #{values.inspect}" do
|
18
|
-
it "returns #{expected.inspect}" do
|
19
|
-
L[*values].min { |minimum, item| minimum.length <=> item.length }.should == expected
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
context "without a block" do
|
26
|
-
[
|
27
|
-
[[], nil],
|
28
|
-
[["A"], "A"],
|
29
|
-
[%w[Ichi Ni San], "Ichi"],
|
30
|
-
].each do |values, expected|
|
31
|
-
context "on #{values.inspect}" do
|
32
|
-
it "returns #{expected.inspect}" do
|
33
|
-
L[*values].min.should == expected
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
require "concurrent/atomics"
|
3
|
-
|
4
|
-
describe Immutable::List do
|
5
|
-
it "ensures each node of a lazy list will only be realized on ONE thread, even when accessed by multiple threads" do
|
6
|
-
counter = Concurrent::Atom.new(0)
|
7
|
-
list = (1..10000).to_list.map { |x| counter.swap { |count| count + 1 }; x * 2 }
|
8
|
-
|
9
|
-
threads = 10.times.collect do
|
10
|
-
Thread.new do
|
11
|
-
node = list
|
12
|
-
node = node.tail until node.empty?
|
13
|
-
end
|
14
|
-
end
|
15
|
-
threads.each(&:join)
|
16
|
-
|
17
|
-
counter.value.should == 10000
|
18
|
-
list.sum.should == 100010000
|
19
|
-
end
|
20
|
-
|
21
|
-
it "doesn't go into an infinite loop if lazy list block raises an exception" do
|
22
|
-
list = (1..10).to_list.map { raise "Oops!" }
|
23
|
-
|
24
|
-
threads = 10.times.collect do
|
25
|
-
Thread.new do
|
26
|
-
-> { list.head }.should raise_error(RuntimeError)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
threads.each(&:join)
|
30
|
-
end
|
31
|
-
|
32
|
-
it "doesn't give horrendously bad performance if thread realizing the list sleeps" do
|
33
|
-
start = Time.now
|
34
|
-
list = (1..100).to_list.map { |x| sleep(0.001); x * 2 }
|
35
|
-
|
36
|
-
threads = 10.times.collect do
|
37
|
-
Thread.new do
|
38
|
-
node = list
|
39
|
-
node = node.tail until node.empty?
|
40
|
-
end
|
41
|
-
end
|
42
|
-
threads.each(&:join)
|
43
|
-
|
44
|
-
elapsed = Time.now - start
|
45
|
-
elapsed.should_not > 0.3
|
46
|
-
end
|
47
|
-
end
|