1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//! A persistent vector.
//!
//! This is a sequence of elements in insertion order - if you need a
//! list of things, any kind of list of things, this is what you're
//! looking for.
//!
//! It's implemented as an [RRB vector][rrbpaper] with [smart
//! head/tail chunking][chunkedseq]. In performance terms, this means
//! that practically every operation is O(log n), except push/pop on
//! both sides, which will be O(1) amortised, and O(log n) in the
//! worst case. In practice, the push/pop operations will be
//! blindingly fast, nearly on par with the native
//! [`VecDeque`][VecDeque], and other operations will have decent, if
//! not high, performance, but they all have more or less the same
//! O(log n) complexity, so you don't need to keep their performance
//! characteristics in mind - everything, even splitting and merging,
//! is safe to use and never too slow.
//!
//! ## Performance Notes
//!
//! Because of the head/tail chunking technique, until you push a
//! number of items above double the tree's branching factor (that's
//! `self.len()` = 2 × *k* (where *k* = 64) = 128) on either side, the
//! data structure is still just a handful of arrays, not yet an RRB
//! tree, so you'll see performance and memory characteristics fairly
//! close to [`Vec`][Vec] or [`VecDeque`][VecDeque].
//!
//! This means that the structure always preallocates four chunks of
//! size *k* (*k* being the tree's branching factor), equivalent to a
//! [`Vec`][Vec] with an initial capacity of 256. Beyond that, it will
//! allocate tree nodes of capacity *k* as needed.
//!
//! In addition, vectors start out as single chunks, and only expand into the
//! full data structure once you go past the chunk size. This makes them
//! perform identically to [`Vec`][Vec] at small sizes.
//!
//! [rrbpaper]: https://infoscience.epfl.ch/record/213452/files/rrbvector.pdf
//! [chunkedseq]: http://deepsea.inria.fr/pasl/chunkedseq.pdf
//! [Vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
//! [VecDeque]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html
#![allow(unsafe_code)]
use std::borrow::Borrow;
use std::cmp::Ordering;
use std::fmt::{Debug, Error, Formatter};
use std::hash::{Hash, Hasher};
use std::iter::Sum;
use std::iter::{FromIterator, FusedIterator};
use std::mem::{replace, swap};
use std::ops::{Add, Index, IndexMut, RangeBounds};
use imbl_sized_chunks::InlineArray;
use crate::nodes::chunk::{Chunk, CHUNK_SIZE};
use crate::nodes::rrb::{Node, PopResult, PushResult, SplitResult};
use crate::sort;
use crate::util::{clone_ref, to_range, Pool, PoolDefault, PoolRef, Ref, Side};
use self::VectorInner::{Full, Inline, Single};
mod focus;
pub use self::focus::{Focus, FocusMut};
mod pool;
pub use self::pool::RRBPool;
#[cfg(any(test, feature = "rayon"))]
pub mod rayon;
/// Construct a vector from a sequence of elements.
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// # fn main() {
/// assert_eq!(
/// vector![1, 2, 3],
/// Vector::from(vec![1, 2, 3])
/// );
/// # }
/// ```
#[macro_export]
macro_rules! vector {
() => { $crate::vector::Vector::new() };
( $($x:expr),* ) => {{
let mut l = $crate::vector::Vector::new();
$(
l.push_back($x);
)*
l
}};
( $($x:expr ,)* ) => {{
let mut l = $crate::vector::Vector::new();
$(
l.push_back($x);
)*
l
}};
}
/// A persistent vector.
///
/// This is a sequence of elements in insertion order - if you need a list of
/// things, any kind of list of things, this is what you're looking for.
///
/// It's implemented as an [RRB vector][rrbpaper] with [smart head/tail
/// chunking][chunkedseq]. In performance terms, this means that practically
/// every operation is O(log n), except push/pop on both sides, which will be
/// O(1) amortised, and O(log n) in the worst case. In practice, the push/pop
/// operations will be blindingly fast, nearly on par with the native
/// [`VecDeque`][VecDeque], and other operations will have decent, if not high,
/// performance, but they all have more or less the same O(log n) complexity, so
/// you don't need to keep their performance characteristics in mind -
/// everything, even splitting and merging, is safe to use and never too slow.
///
/// ## Performance Notes
///
/// Because of the head/tail chunking technique, until you push a number of
/// items above double the tree's branching factor (that's `self.len()` = 2 ×
/// *k* (where *k* = 64) = 128) on either side, the data structure is still just
/// a handful of arrays, not yet an RRB tree, so you'll see performance and
/// memory characteristics similar to [`Vec`][Vec] or [`VecDeque`][VecDeque].
///
/// This means that the structure always preallocates four chunks of size *k*
/// (*k* being the tree's branching factor), equivalent to a [`Vec`][Vec] with
/// an initial capacity of 256. Beyond that, it will allocate tree nodes of
/// capacity *k* as needed.
///
/// In addition, vectors start out as single chunks, and only expand into the
/// full data structure once you go past the chunk size. This makes them
/// perform identically to [`Vec`][Vec] at small sizes.
///
/// [rrbpaper]: https://infoscience.epfl.ch/record/213452/files/rrbvector.pdf
/// [chunkedseq]: http://deepsea.inria.fr/pasl/chunkedseq.pdf
/// [Vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
/// [VecDeque]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html
pub struct Vector<A> {
vector: VectorInner<A>,
}
enum VectorInner<A> {
Inline(RRBPool<A>, InlineArray<A, RRB<A>>),
Single(RRBPool<A>, PoolRef<Chunk<A>>),
Full(RRBPool<A>, RRB<A>),
}
#[doc(hidden)]
pub struct RRB<A> {
length: usize,
middle_level: usize,
outer_f: PoolRef<Chunk<A>>,
inner_f: PoolRef<Chunk<A>>,
middle: Ref<Node<A>>,
inner_b: PoolRef<Chunk<A>>,
outer_b: PoolRef<Chunk<A>>,
}
impl<A> Clone for RRB<A> {
fn clone(&self) -> Self {
RRB {
length: self.length,
middle_level: self.middle_level,
outer_f: self.outer_f.clone(),
inner_f: self.inner_f.clone(),
middle: self.middle.clone(),
inner_b: self.inner_b.clone(),
outer_b: self.outer_b.clone(),
}
}
}
impl<A> Vector<A> {
/// Get a reference to the memory pool this `Vector` is using.
///
/// Note that if you didn't specifically construct it with a pool, you'll
/// get back a reference to a pool of size 0.
#[cfg_attr(not(feature = "pool"), doc(hidden))]
pub fn pool(&self) -> &RRBPool<A> {
match self.vector {
Inline(ref pool, _) => pool,
Single(ref pool, _) => pool,
Full(ref pool, _) => pool,
}
}
/// True if a vector is a full inline or single chunk, ie. must be promoted
/// to grow further.
fn needs_promotion(&self) -> bool {
match &self.vector {
// Prevent the inline array from getting bigger than a single chunk. This means that we
// can always promote `Inline` to `Single`, even when we're configured to have a small
// chunk size. (TODO: it might be better to just never use `Single` in this situation,
// but that's a more invasive change.)
Inline(_, chunk) => chunk.is_full() || chunk.len() + 1 >= CHUNK_SIZE,
Single(_, chunk) => chunk.is_full(),
_ => false,
}
}
/// Promote an inline to a single.
fn promote_inline(&mut self) {
if let Inline(pool, chunk) = &mut self.vector {
self.vector = Single(pool.clone(), PoolRef::new(&pool.value_pool, chunk.into()));
}
}
/// Promote a single to a full, with the single chunk becoming inner_f, or
/// promote an inline to a single.
fn promote_front(&mut self) {
self.vector = match &mut self.vector {
Inline(pool, chunk) => {
Single(pool.clone(), PoolRef::new(&pool.value_pool, chunk.into()))
}
Single(pool, chunk) => {
let chunk = chunk.clone();
Full(
pool.clone(),
RRB {
length: chunk.len(),
middle_level: 0,
outer_f: PoolRef::default(&pool.value_pool),
inner_f: chunk,
middle: Ref::new(Node::new()),
inner_b: PoolRef::default(&pool.value_pool),
outer_b: PoolRef::default(&pool.value_pool),
},
)
}
Full(_, _) => return,
}
}
/// Promote a single to a full, with the single chunk becoming inner_b, or
/// promote an inline to a single.
fn promote_back(&mut self) {
self.vector = match &mut self.vector {
Inline(pool, chunk) => {
Single(pool.clone(), PoolRef::new(&pool.value_pool, chunk.into()))
}
Single(pool, chunk) => {
let chunk = chunk.clone();
Full(
pool.clone(),
RRB {
length: chunk.len(),
middle_level: 0,
outer_f: PoolRef::default(&pool.value_pool),
inner_f: PoolRef::default(&pool.value_pool),
middle: Ref::new(Node::new()),
inner_b: chunk,
outer_b: PoolRef::default(&pool.value_pool),
},
)
}
Full(_, _) => return,
}
}
/// Construct an empty vector.
#[must_use]
pub fn new() -> Self {
Self {
vector: Inline(RRBPool::default(), InlineArray::new()),
}
}
/// Construct an empty vector using a specific memory pool.
#[cfg(feature = "pool")]
#[must_use]
pub fn with_pool(pool: &RRBPool<A>) -> Self {
Self {
vector: Inline(pool.clone(), InlineArray::new()),
}
}
/// Get the length of a vector.
///
/// Time: O(1)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// assert_eq!(5, vector![1, 2, 3, 4, 5].len());
/// ```
#[inline]
#[must_use]
pub fn len(&self) -> usize {
match &self.vector {
Inline(_, chunk) => chunk.len(),
Single(_, chunk) => chunk.len(),
Full(_, tree) => tree.length,
}
}
/// Test whether a vector is empty.
///
/// Time: O(1)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let vec = vector!["Joe", "Mike", "Robert"];
/// assert_eq!(false, vec.is_empty());
/// assert_eq!(true, Vector::<i32>::new().is_empty());
/// ```
#[inline]
#[must_use]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
/// Test whether a vector is currently inlined.
///
/// Vectors small enough that their contents could be stored entirely inside
/// the space of `std::mem::size_of::<Vector<A>>()` bytes are stored inline on
/// the stack instead of allocating any chunks. This method returns `true` if
/// this vector is currently inlined, or `false` if it currently has chunks allocated
/// on the heap.
///
/// This may be useful in conjunction with [`ptr_eq()`][ptr_eq], which checks if
/// two vectors' heap allocations are the same, and thus will never return `true`
/// for inlined vectors.
///
/// Time: O(1)
///
/// [ptr_eq]: #method.ptr_eq
#[inline]
#[must_use]
pub fn is_inline(&self) -> bool {
matches!(self.vector, Inline(_, _))
}
/// Test whether two vectors refer to the same content in memory.
///
/// This uses the following rules to determine equality:
/// * If the two sides are references to the same vector, return true.
/// * If the two sides are single chunk vectors pointing to the same chunk, return true.
/// * If the two sides are full trees pointing to the same chunks, return true.
///
/// This would return true if you're comparing a vector to itself, or
/// if you're comparing a vector to a fresh clone of itself. The exception to this is
/// if you've cloned an inline array (ie. an array with so few elements they can fit
/// inside the space a `Vector` allocates for its pointers, so there are no heap allocations
/// to compare).
///
/// Time: O(1)
#[must_use]
pub fn ptr_eq(&self, other: &Self) -> bool {
fn cmp_chunk<A>(left: &PoolRef<Chunk<A>>, right: &PoolRef<Chunk<A>>) -> bool {
(left.is_empty() && right.is_empty()) || PoolRef::ptr_eq(left, right)
}
if std::ptr::eq(self, other) {
return true;
}
match (&self.vector, &other.vector) {
(Single(_, left), Single(_, right)) => cmp_chunk(left, right),
(Full(_, left), Full(_, right)) => {
cmp_chunk(&left.outer_f, &right.outer_f)
&& cmp_chunk(&left.inner_f, &right.inner_f)
&& cmp_chunk(&left.inner_b, &right.inner_b)
&& cmp_chunk(&left.outer_b, &right.outer_b)
&& ((left.middle.is_empty() && right.middle.is_empty())
|| Ref::ptr_eq(&left.middle, &right.middle))
}
_ => false,
}
}
/// Get an iterator over a vector.
///
/// Time: O(1)
#[inline]
#[must_use]
pub fn iter(&self) -> Iter<'_, A> {
Iter::new(self)
}
/// Get an iterator over the leaf nodes of a vector.
///
/// This returns an iterator over the [`Chunk`s][Chunk] at the leaves of the
/// RRB tree. These are useful for efficient parallelisation of work on
/// the vector, but should not be used for basic iteration.
///
/// Time: O(1)
///
/// [Chunk]: ../chunk/struct.Chunk.html
#[inline]
#[must_use]
pub fn leaves(&self) -> Chunks<'_, A> {
Chunks::new(self)
}
/// Construct a [`Focus`][Focus] for a vector.
///
/// Time: O(1)
///
/// [Focus]: enum.Focus.html
#[inline]
#[must_use]
pub fn focus(&self) -> Focus<'_, A> {
Focus::new(self)
}
/// Get a reference to the value at index `index` in a vector.
///
/// Returns `None` if the index is out of bounds.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let vec = vector!["Joe", "Mike", "Robert"];
/// assert_eq!(Some(&"Robert"), vec.get(2));
/// assert_eq!(None, vec.get(5));
/// ```
#[must_use]
pub fn get(&self, index: usize) -> Option<&A> {
if index >= self.len() {
return None;
}
match &self.vector {
Inline(_, chunk) => chunk.get(index),
Single(_, chunk) => chunk.get(index),
Full(_, tree) => {
let mut local_index = index;
if local_index < tree.outer_f.len() {
return Some(&tree.outer_f[local_index]);
}
local_index -= tree.outer_f.len();
if local_index < tree.inner_f.len() {
return Some(&tree.inner_f[local_index]);
}
local_index -= tree.inner_f.len();
if local_index < tree.middle.len() {
return Some(tree.middle.index(tree.middle_level, local_index));
}
local_index -= tree.middle.len();
if local_index < tree.inner_b.len() {
return Some(&tree.inner_b[local_index]);
}
local_index -= tree.inner_b.len();
Some(&tree.outer_b[local_index])
}
}
}
/// Get the first element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// Time: O(log n)
#[inline]
#[must_use]
pub fn front(&self) -> Option<&A> {
self.get(0)
}
/// Get the first element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// This is an alias for the [`front`][front] method.
///
/// Time: O(log n)
///
/// [front]: #method.front
#[inline]
#[must_use]
pub fn head(&self) -> Option<&A> {
self.get(0)
}
/// Get the last element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// Time: O(log n)
#[must_use]
pub fn back(&self) -> Option<&A> {
if self.is_empty() {
None
} else {
self.get(self.len() - 1)
}
}
/// Get the last element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// This is an alias for the [`back`][back] method.
///
/// Time: O(log n)
///
/// [back]: #method.back
#[inline]
#[must_use]
pub fn last(&self) -> Option<&A> {
self.back()
}
/// Get the index of a given element in the vector.
///
/// Searches the vector for the first occurrence of a given value,
/// and returns the index of the value if it's there. Otherwise,
/// it returns `None`.
///
/// Time: O(n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3, 4, 5];
/// assert_eq!(Some(2), vec.index_of(&3));
/// assert_eq!(None, vec.index_of(&31337));
/// ```
#[must_use]
pub fn index_of(&self, value: &A) -> Option<usize>
where
A: PartialEq,
{
for (index, item) in self.iter().enumerate() {
if value == item {
return Some(index);
}
}
None
}
/// Test if a given element is in the vector.
///
/// Searches the vector for the first occurrence of a given value,
/// and returns `true` if it's there. If it's nowhere to be found
/// in the vector, it returns `false`.
///
/// Time: O(n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3, 4, 5];
/// assert_eq!(true, vec.contains(&3));
/// assert_eq!(false, vec.contains(&31337));
/// ```
#[inline]
#[must_use]
pub fn contains(&self, value: &A) -> bool
where
A: PartialEq,
{
self.index_of(value).is_some()
}
/// Discard all elements from the vector.
///
/// This leaves you with an empty vector, and all elements that
/// were previously inside it are dropped.
///
/// Time: O(n)
pub fn clear(&mut self) {
if !self.is_empty() {
self.vector = Inline(self.pool().clone(), InlineArray::new());
}
}
/// Binary search a sorted vector for a given element using a comparator
/// function.
///
/// Assumes the vector has already been sorted using the same comparator
/// function, eg. by using [`sort_by`][sort_by].
///
/// If the value is found, it returns `Ok(index)` where `index` is the index
/// of the element. If the value isn't found, it returns `Err(index)` where
/// `index` is the index at which the element would need to be inserted to
/// maintain sorted order.
///
/// Time: O(log n)
///
/// [sort_by]: #method.sort_by
pub fn binary_search_by<F>(&self, mut f: F) -> Result<usize, usize>
where
F: FnMut(&A) -> Ordering,
{
let mut size = self.len();
if size == 0 {
return Err(0);
}
let mut base = 0;
while size > 1 {
let half = size / 2;
let mid = base + half;
base = match f(&self[mid]) {
Ordering::Greater => base,
_ => mid,
};
size -= half;
}
match f(&self[base]) {
Ordering::Equal => Ok(base),
Ordering::Greater => Err(base),
Ordering::Less => Err(base + 1),
}
}
/// Binary search a sorted vector for a given element.
///
/// If the value is found, it returns `Ok(index)` where `index` is the index
/// of the element. If the value isn't found, it returns `Err(index)` where
/// `index` is the index at which the element would need to be inserted to
/// maintain sorted order.
///
/// Time: O(log n)
pub fn binary_search(&self, value: &A) -> Result<usize, usize>
where
A: Ord,
{
self.binary_search_by(|e| e.cmp(value))
}
/// Binary search a sorted vector for a given element with a key extract
/// function.
///
/// Assumes the vector has already been sorted using the same key extract
/// function, eg. by using [`sort_by_key`][sort_by_key].
///
/// If the value is found, it returns `Ok(index)` where `index` is the index
/// of the element. If the value isn't found, it returns `Err(index)` where
/// `index` is the index at which the element would need to be inserted to
/// maintain sorted order.
///
/// Time: O(log n)
///
/// [sort_by_key]: #method.sort_by_key
pub fn binary_search_by_key<B, F>(&self, b: &B, mut f: F) -> Result<usize, usize>
where
F: FnMut(&A) -> B,
B: Ord,
{
self.binary_search_by(|k| f(k).cmp(b))
}
/// Construct a vector with a single value.
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let vec = Vector::unit(1337);
/// assert_eq!(1, vec.len());
/// assert_eq!(
/// vec.get(0),
/// Some(&1337)
/// );
/// ```
#[inline]
#[must_use]
pub fn unit(a: A) -> Self {
let pool = RRBPool::default();
if InlineArray::<A, RRB<A>>::CAPACITY > 0 {
let mut array = InlineArray::new();
array.push(a);
Self {
vector: Inline(pool, array),
}
} else {
let chunk = PoolRef::new(&pool.value_pool, Chunk::unit(a));
Self {
vector: Single(pool, chunk),
}
}
}
/// Dump the internal RRB tree into graphviz format.
///
/// This method requires the `debug` feature flag.
#[cfg(any(test, feature = "debug"))]
pub fn dot<W: std::io::Write>(&self, write: W) -> std::io::Result<()> {
if let Full(_, ref tree) = self.vector {
tree.middle.dot(write)
} else {
Ok(())
}
}
/// Verify the internal consistency of a vector.
///
/// This method walks the RRB tree making up the current `Vector`
/// (if it has one) and verifies that all the invariants hold.
/// If something is wrong, it will panic.
///
/// This method requires the `debug` feature flag.
#[cfg(any(test, feature = "debug"))]
pub fn assert_invariants(&self) {
if let Full(_, ref tree) = self.vector {
tree.assert_invariants();
}
}
}
impl<A: Clone> Vector<A> {
/// Get a mutable reference to the value at index `index` in a
/// vector.
///
/// Returns `None` if the index is out of bounds.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector!["Joe", "Mike", "Robert"];
/// {
/// let robert = vec.get_mut(2).unwrap();
/// assert_eq!(&mut "Robert", robert);
/// *robert = "Bjarne";
/// }
/// assert_eq!(vector!["Joe", "Mike", "Bjarne"], vec);
/// ```
#[must_use]
pub fn get_mut(&mut self, index: usize) -> Option<&mut A> {
if index >= self.len() {
return None;
}
match &mut self.vector {
Inline(_, chunk) => chunk.get_mut(index),
Single(pool, chunk) => PoolRef::make_mut(&pool.value_pool, chunk).get_mut(index),
Full(pool, tree) => {
let mut local_index = index;
if local_index < tree.outer_f.len() {
let outer_f = PoolRef::make_mut(&pool.value_pool, &mut tree.outer_f);
return Some(&mut outer_f[local_index]);
}
local_index -= tree.outer_f.len();
if local_index < tree.inner_f.len() {
let inner_f = PoolRef::make_mut(&pool.value_pool, &mut tree.inner_f);
return Some(&mut inner_f[local_index]);
}
local_index -= tree.inner_f.len();
if local_index < tree.middle.len() {
let middle = Ref::make_mut(&mut tree.middle);
return Some(middle.index_mut(pool, tree.middle_level, local_index));
}
local_index -= tree.middle.len();
if local_index < tree.inner_b.len() {
let inner_b = PoolRef::make_mut(&pool.value_pool, &mut tree.inner_b);
return Some(&mut inner_b[local_index]);
}
local_index -= tree.inner_b.len();
let outer_b = PoolRef::make_mut(&pool.value_pool, &mut tree.outer_b);
Some(&mut outer_b[local_index])
}
}
}
/// Get a mutable reference to the first element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// Time: O(log n)
#[inline]
#[must_use]
pub fn front_mut(&mut self) -> Option<&mut A> {
self.get_mut(0)
}
/// Get a mutable reference to the last element of a vector.
///
/// If the vector is empty, `None` is returned.
///
/// Time: O(log n)
#[must_use]
pub fn back_mut(&mut self) -> Option<&mut A> {
if self.is_empty() {
None
} else {
let len = self.len();
self.get_mut(len - 1)
}
}
/// Construct a [`FocusMut`][FocusMut] for a vector.
///
/// Time: O(1)
///
/// [FocusMut]: enum.FocusMut.html
#[inline]
#[must_use]
pub fn focus_mut(&mut self) -> FocusMut<'_, A> {
FocusMut::new(self)
}
/// Get a mutable iterator over a vector.
///
/// Time: O(1)
#[inline]
#[must_use]
pub fn iter_mut(&mut self) -> IterMut<'_, A> {
IterMut::new(self)
}
/// Get a mutable iterator over the leaf nodes of a vector.
//
/// This returns an iterator over the [`Chunk`s][Chunk] at the leaves of the
/// RRB tree. These are useful for efficient parallelisation of work on
/// the vector, but should not be used for basic iteration.
///
/// Time: O(1)
///
/// [Chunk]: ../chunk/struct.Chunk.html
#[inline]
#[must_use]
pub fn leaves_mut(&mut self) -> ChunksMut<'_, A> {
ChunksMut::new(self)
}
/// Create a new vector with the value at index `index` updated.
///
/// Panics if the index is out of bounds.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3];
/// assert_eq!(vector![1, 5, 3], vec.update(1, 5));
/// ```
#[must_use]
pub fn update(&self, index: usize, value: A) -> Self {
let mut out = self.clone();
out[index] = value;
out
}
/// Update the value at index `index` in a vector.
///
/// Returns the previous value at the index.
///
/// Panics if the index is out of bounds.
///
/// Time: O(log n)
#[inline]
pub fn set(&mut self, index: usize, value: A) -> A {
replace(&mut self[index], value)
}
/// Swap the elements at indices `i` and `j`.
///
/// Time: O(log n)
pub fn swap(&mut self, i: usize, j: usize) {
if i != j {
let a: *mut A = &mut self[i];
let b: *mut A = &mut self[j];
// Vector's implementation of IndexMut ensures that if `i` and `j` are different
// indices then `&mut self[i]` and `&mut self[j]` are non-overlapping.
unsafe {
std::ptr::swap(a, b);
}
}
}
/// Push a value to the front of a vector.
///
/// Time: O(1)*
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![5, 6, 7];
/// vec.push_front(4);
/// assert_eq!(vector![4, 5, 6, 7], vec);
/// ```
pub fn push_front(&mut self, value: A) {
if self.needs_promotion() {
self.promote_back();
}
match &mut self.vector {
Inline(_, chunk) => {
chunk.insert(0, value);
}
Single(pool, chunk) => PoolRef::make_mut(&pool.value_pool, chunk).push_front(value),
Full(pool, tree) => tree.push_front(pool, value),
}
}
/// Push a value to the back of a vector.
///
/// Time: O(1)*
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3];
/// vec.push_back(4);
/// assert_eq!(vector![1, 2, 3, 4], vec);
/// ```
pub fn push_back(&mut self, value: A) {
if self.needs_promotion() {
self.promote_front();
}
match &mut self.vector {
Inline(_, chunk) => {
chunk.push(value);
}
Single(pool, chunk) => PoolRef::make_mut(&pool.value_pool, chunk).push_back(value),
Full(pool, tree) => tree.push_back(pool, value),
}
}
/// Remove the first element from a vector and return it.
///
/// Time: O(1)*
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3];
/// assert_eq!(Some(1), vec.pop_front());
/// assert_eq!(vector![2, 3], vec);
/// ```
pub fn pop_front(&mut self) -> Option<A> {
if self.is_empty() {
None
} else {
match &mut self.vector {
Inline(_, chunk) => chunk.remove(0),
Single(pool, chunk) => Some(PoolRef::make_mut(&pool.value_pool, chunk).pop_front()),
Full(pool, tree) => tree.pop_front(pool),
}
}
}
/// Remove the last element from a vector and return it.
///
/// Time: O(1)*
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::Vector;
/// let mut vec = vector![1, 2, 3];
/// assert_eq!(Some(3), vec.pop_back());
/// assert_eq!(vector![1, 2], vec);
/// ```
pub fn pop_back(&mut self) -> Option<A> {
if self.is_empty() {
None
} else {
match &mut self.vector {
Inline(_, chunk) => chunk.pop(),
Single(pool, chunk) => Some(PoolRef::make_mut(&pool.value_pool, chunk).pop_back()),
Full(pool, tree) => tree.pop_back(pool),
}
}
}
/// Append the vector `other` to the end of the current vector.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut vec = vector![1, 2, 3];
/// vec.append(vector![7, 8, 9]);
/// assert_eq!(vector![1, 2, 3, 7, 8, 9], vec);
/// ```
pub fn append(&mut self, mut other: Self) {
if other.is_empty() {
return;
}
if self.is_empty() {
*self = other;
return;
}
self.promote_inline();
other.promote_inline();
let total_length = self
.len()
.checked_add(other.len())
.expect("Vector length overflow");
match &mut self.vector {
Inline(_, _) => unreachable!("inline vecs should have been promoted"),
Single(pool, left) => {
match &mut other.vector {
Inline(_, _) => unreachable!("inline vecs should have been promoted"),
// If both are single chunks and left has room for right: directly
// memcpy right into left
Single(_, ref mut right) if total_length <= CHUNK_SIZE => {
PoolRef::make_mut(&pool.value_pool, left)
.append(PoolRef::make_mut(&pool.value_pool, right));
return;
}
// If only left is a single chunk and has room for right: push
// right's elements into left
_ if total_length <= CHUNK_SIZE => {
while let Some(value) = other.pop_front() {
PoolRef::make_mut(&pool.value_pool, left).push_back(value);
}
return;
}
_ => {}
}
}
Full(pool, left) => {
if let Full(_, mut right) = other.vector {
// If left and right are trees with empty middles, left has no back
// buffers, and right has no front buffers: copy right's back
// buffers over to left
if left.middle.is_empty()
&& right.middle.is_empty()
&& left.outer_b.is_empty()
&& left.inner_b.is_empty()
&& right.outer_f.is_empty()
&& right.inner_f.is_empty()
{
left.inner_b = right.inner_b;
left.outer_b = right.outer_b;
left.length = total_length;
return;
}
// If left and right are trees with empty middles and left's buffers
// can fit right's buffers: push right's elements onto left
if left.middle.is_empty()
&& right.middle.is_empty()
&& total_length <= CHUNK_SIZE * 4
{
while let Some(value) = right.pop_front(pool) {
left.push_back(pool, value);
}
return;
}
// Both are full and big: do the full RRB join
let inner_b1 = left.inner_b.clone();
left.push_middle(pool, Side::Right, inner_b1);
let outer_b1 = left.outer_b.clone();
left.push_middle(pool, Side::Right, outer_b1);
let inner_f2 = right.inner_f.clone();
right.push_middle(pool, Side::Left, inner_f2);
let outer_f2 = right.outer_f.clone();
right.push_middle(pool, Side::Left, outer_f2);
let mut middle1 = clone_ref(replace(&mut left.middle, Ref::from(Node::new())));
let mut middle2 = clone_ref(right.middle);
let normalised_middle = match left.middle_level.cmp(&right.middle_level) {
Ordering::Greater => {
middle2 = middle2.elevate(pool, left.middle_level - right.middle_level);
left.middle_level
}
Ordering::Less => {
middle1 = middle1.elevate(pool, right.middle_level - left.middle_level);
right.middle_level
}
Ordering::Equal => left.middle_level,
};
left.middle = Ref::new(Node::merge(pool, middle1, middle2, normalised_middle));
left.middle_level = normalised_middle + 1;
left.inner_b = right.inner_b;
left.outer_b = right.outer_b;
left.length = total_length;
left.prune();
return;
}
}
}
// No optimisations available, and either left, right or both are
// single: promote both to full and retry
self.promote_front();
other.promote_back();
self.append(other)
}
/// Retain only the elements specified by the predicate.
///
/// Remove all elements for which the provided function `f`
/// returns false from the vector.
///
/// Time: O(n)
pub fn retain<F>(&mut self, mut f: F)
where
F: FnMut(&A) -> bool,
{
let len = self.len();
let mut del = 0;
{
let mut focus = self.focus_mut();
for i in 0..len {
if !f(focus.index(i)) {
del += 1;
} else if del > 0 {
focus.swap(i - del, i);
}
}
}
if del > 0 {
let _ = self.split_off(len - del);
}
}
/// Split a vector at a given index.
///
/// Split a vector at a given index, consuming the vector and
/// returning a pair of the left hand side and the right hand side
/// of the split.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut vec = vector![1, 2, 3, 7, 8, 9];
/// let (left, right) = vec.split_at(3);
/// assert_eq!(vector![1, 2, 3], left);
/// assert_eq!(vector![7, 8, 9], right);
/// ```
pub fn split_at(mut self, index: usize) -> (Self, Self) {
let right = self.split_off(index);
(self, right)
}
/// Split a vector at a given index.
///
/// Split a vector at a given index, leaving the left hand side in
/// the current vector and returning a new vector containing the
/// right hand side.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut left = vector![1, 2, 3, 7, 8, 9];
/// let right = left.split_off(3);
/// assert_eq!(vector![1, 2, 3], left);
/// assert_eq!(vector![7, 8, 9], right);
/// ```
#[must_use]
pub fn split_off(&mut self, index: usize) -> Self {
assert!(index <= self.len());
match &mut self.vector {
Inline(pool, chunk) => Self {
vector: Inline(pool.clone(), chunk.split_off(index)),
},
Single(pool, chunk) => Self {
vector: Single(
pool.clone(),
PoolRef::new(
&pool.value_pool,
PoolRef::make_mut(&pool.value_pool, chunk).split_off(index),
),
),
},
Full(pool, tree) => {
let mut local_index = index;
if local_index < tree.outer_f.len() {
let of2 = PoolRef::make_mut(&pool.value_pool, &mut tree.outer_f)
.split_off(local_index);
let right = RRB {
length: tree.length - index,
middle_level: tree.middle_level,
outer_f: PoolRef::new(&pool.value_pool, of2),
inner_f: replace_pool_def(&pool.value_pool, &mut tree.inner_f),
middle: std::mem::take(&mut tree.middle),
inner_b: replace_pool_def(&pool.value_pool, &mut tree.inner_b),
outer_b: replace_pool_def(&pool.value_pool, &mut tree.outer_b),
};
tree.length = index;
tree.middle_level = 0;
return Self {
vector: Full(pool.clone(), right),
};
}
local_index -= tree.outer_f.len();
if local_index < tree.inner_f.len() {
let if2 = PoolRef::make_mut(&pool.value_pool, &mut tree.inner_f)
.split_off(local_index);
let right = RRB {
length: tree.length - index,
middle_level: tree.middle_level,
outer_f: PoolRef::new(&pool.value_pool, if2),
inner_f: PoolRef::<Chunk<A>>::default(&pool.value_pool),
middle: std::mem::take(&mut tree.middle),
inner_b: replace_pool_def(&pool.value_pool, &mut tree.inner_b),
outer_b: replace_pool_def(&pool.value_pool, &mut tree.outer_b),
};
tree.length = index;
tree.middle_level = 0;
swap(&mut tree.outer_b, &mut tree.inner_f);
return Self {
vector: Full(pool.clone(), right),
};
}
local_index -= tree.inner_f.len();
if local_index < tree.middle.len() {
let mut right_middle = tree.middle.clone();
let (c1, c2) = {
let m1 = Ref::make_mut(&mut tree.middle);
let m2 = Ref::make_mut(&mut right_middle);
match m1.split(pool, tree.middle_level, Side::Right, local_index) {
SplitResult::Dropped(_) => (),
SplitResult::OutOfBounds => unreachable!(),
};
match m2.split(pool, tree.middle_level, Side::Left, local_index) {
SplitResult::Dropped(_) => (),
SplitResult::OutOfBounds => unreachable!(),
};
let c1 = match m1.pop_chunk(pool, tree.middle_level, Side::Right) {
PopResult::Empty => PoolRef::default(&pool.value_pool),
PopResult::Done(chunk) => chunk,
PopResult::Drained(chunk) => {
m1.clear_node();
chunk
}
};
let c2 = match m2.pop_chunk(pool, tree.middle_level, Side::Left) {
PopResult::Empty => PoolRef::default(&pool.value_pool),
PopResult::Done(chunk) => chunk,
PopResult::Drained(chunk) => {
m2.clear_node();
chunk
}
};
(c1, c2)
};
let mut right = RRB {
length: tree.length - index,
middle_level: tree.middle_level,
outer_f: c2,
inner_f: PoolRef::<Chunk<A>>::default(&pool.value_pool),
middle: right_middle,
inner_b: replace_pool_def(&pool.value_pool, &mut tree.inner_b),
outer_b: replace(&mut tree.outer_b, c1),
};
tree.length = index;
tree.prune();
right.prune();
return Self {
vector: Full(pool.clone(), right),
};
}
local_index -= tree.middle.len();
if local_index < tree.inner_b.len() {
let ib2 = PoolRef::make_mut(&pool.value_pool, &mut tree.inner_b)
.split_off(local_index);
let right = RRB {
length: tree.length - index,
outer_b: replace_pool_def(&pool.value_pool, &mut tree.outer_b),
outer_f: PoolRef::new(&pool.value_pool, ib2),
..RRB::new(pool)
};
tree.length = index;
swap(&mut tree.outer_b, &mut tree.inner_b);
return Self {
vector: Full(pool.clone(), right),
};
}
local_index -= tree.inner_b.len();
let ob2 =
PoolRef::make_mut(&pool.value_pool, &mut tree.outer_b).split_off(local_index);
tree.length = index;
Self {
vector: Single(pool.clone(), PoolRef::new(&pool.value_pool, ob2)),
}
}
}
}
/// Construct a vector with `count` elements removed from the
/// start of the current vector.
///
/// Time: O(log n)
#[must_use]
pub fn skip(&self, count: usize) -> Self {
// FIXME can be made more efficient by dropping the unwanted side without constructing it
self.clone().split_off(count)
}
/// Construct a vector of the first `count` elements from the
/// current vector.
///
/// Time: O(log n)
#[must_use]
pub fn take(&self, count: usize) -> Self {
// FIXME can be made more efficient by dropping the unwanted side without constructing it
let mut left = self.clone();
let _ = left.split_off(count);
left
}
/// Truncate a vector to the given size.
///
/// Discards all elements in the vector beyond the given length.
/// Does nothing if `len` is greater or equal to the length of the vector.
///
/// Time: O(log n)
pub fn truncate(&mut self, len: usize) {
if len < self.len() {
// FIXME can be made more efficient by dropping the unwanted side without constructing it
let _ = self.split_off(len);
}
}
/// Extract a slice from a vector.
///
/// Remove the elements from `start_index` until `end_index` in
/// the current vector and return the removed slice as a new
/// vector.
///
/// Time: O(log n)
#[must_use]
pub fn slice<R>(&mut self, range: R) -> Self
where
R: RangeBounds<usize>,
{
let r = to_range(&range, self.len());
if r.start >= r.end || r.start >= self.len() {
return Vector::new();
}
let mut middle = self.split_off(r.start);
let right = middle.split_off(r.end - r.start);
self.append(right);
middle
}
/// Insert an element into a vector.
///
/// Insert an element at position `index`, shifting all elements
/// after it to the right.
///
/// ## Performance Note
///
/// While `push_front` and `push_back` are heavily optimised
/// operations, `insert` in the middle of a vector requires a
/// split, a push, and an append. Thus, if you want to insert
/// many elements at the same location, instead of `insert`ing
/// them one by one, you should rather create a new vector
/// containing the elements to insert, split the vector at the
/// insertion point, and append the left hand, the new vector and
/// the right hand in order.
///
/// Time: O(log n)
pub fn insert(&mut self, index: usize, value: A) {
if index == 0 {
return self.push_front(value);
}
if index == self.len() {
return self.push_back(value);
}
assert!(index < self.len());
if matches!(&self.vector, Inline(_, _)) && self.needs_promotion() {
self.promote_inline();
}
match &mut self.vector {
Inline(_, chunk) => {
chunk.insert(index, value);
}
Single(pool, chunk) if chunk.len() < CHUNK_SIZE => {
PoolRef::make_mut(&pool.value_pool, chunk).insert(index, value)
}
// TODO a lot of optimisations still possible here
_ => {
let right = self.split_off(index);
self.push_back(value);
self.append(right);
}
}
}
/// Remove an element from a vector.
///
/// Remove the element from position 'index', shifting all
/// elements after it to the left, and return the removed element.
///
/// ## Performance Note
///
/// While `pop_front` and `pop_back` are heavily optimised
/// operations, `remove` in the middle of a vector requires a
/// split, a pop, and an append. Thus, if you want to remove many
/// elements from the same location, instead of `remove`ing them
/// one by one, it is much better to use [`slice`][slice].
///
/// Time: O(log n)
///
/// [slice]: #method.slice
pub fn remove(&mut self, index: usize) -> A {
assert!(index < self.len());
match &mut self.vector {
Inline(_, chunk) => chunk.remove(index).unwrap(),
Single(pool, chunk) => PoolRef::make_mut(&pool.value_pool, chunk).remove(index),
_ => {
if index == 0 {
return self.pop_front().unwrap();
}
if index == self.len() - 1 {
return self.pop_back().unwrap();
}
// TODO a lot of optimisations still possible here
let mut right = self.split_off(index);
let value = right.pop_front().unwrap();
self.append(right);
value
}
}
}
/// Insert an element into a sorted vector.
///
/// Insert an element into a vector in sorted order, assuming the vector is
/// already in sorted order.
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut vec = vector![1, 2, 3, 7, 8, 9];
/// vec.insert_ord(5);
/// assert_eq!(vector![1, 2, 3, 5, 7, 8, 9], vec);
/// ```
pub fn insert_ord(&mut self, item: A)
where
A: Ord,
{
match self.binary_search(&item) {
Ok(index) => self.insert(index, item),
Err(index) => self.insert(index, item),
}
}
/// Insert an element into a sorted vector using a comparator function.
///
/// Insert an element into a vector in sorted order using the given
/// comparator function, assuming the vector is already in sorted order.
///
/// Note that the ordering used to sort the vector must logically match
/// the ordering in the comparison function provided to `insert_ord_by`.
/// Incompatible definitions of the ordering won't result in memory
/// unsafety, but will likely result in out-of-order insertions.
///
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// use imbl::vector::Vector;
///
/// let mut vec: Vector<u8> = vector![9, 8, 7, 3, 2, 1];
/// vec.insert_ord_by(5, |a, b| a.cmp(b).reverse());
/// assert_eq!(vector![9, 8, 7, 5, 3, 2, 1], vec);
///
/// // Note that `insert_ord` does not work in this case because it uses
/// // the default comparison function for the item type.
/// vec.insert_ord(4);
/// assert_eq!(vector![4, 9, 8, 7, 5, 3, 2, 1], vec);
/// ```
pub fn insert_ord_by<F>(&mut self, item: A, mut f: F)
where
A: Ord,
F: FnMut(&A, &A) -> Ordering,
{
match self.binary_search_by(|scan_item| f(scan_item, &item)) {
Ok(idx) | Err(idx) => self.insert(idx, item),
}
}
/// Insert an element into a sorted vector where the comparison function
/// delegates to the Ord implementation for values calculated by a user-
/// provided function defined on the item type.
///
/// This function assumes the vector is already sorted. If it isn't sorted,
/// this function may insert the provided value out of order.
///
/// Note that the ordering of the sorted vector must logically match the
/// `PartialOrd` implementation of the type returned by the passed comparator
/// function `f`. Incompatible definitions of the ordering won't result in
/// memory unsafety, but will likely result in out-of-order insertions.
///
///
/// Time: O(log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// use imbl::vector::Vector;
///
/// type A = (u8, &'static str);
///
/// let mut vec: Vector<A> = vector![(3, "a"), (1, "c"), (0, "d")];
///
/// // For the sake of this example, let's say that only the second element
/// // of the A tuple is important in the context of comparison.
/// vec.insert_ord_by_key((0, "b"), |a| a.1);
/// assert_eq!(vector![(3, "a"), (0, "b"), (1, "c"), (0, "d")], vec);
///
/// // Note that `insert_ord` does not work in this case because it uses
/// // the default comparison function for the item type.
/// vec.insert_ord((0, "e"));
/// assert_eq!(vector![(3, "a"), (0, "b"), (0, "e"), (1, "c"), (0, "d")], vec);
/// ```
pub fn insert_ord_by_key<B, F>(&mut self, item: A, mut f: F)
where
B: Ord,
F: FnMut(&A) -> B,
{
match self.binary_search_by_key(&f(&item), |scan_item| f(scan_item)) {
Ok(idx) | Err(idx) => self.insert(idx, item),
}
}
/// Sort a vector.
///
/// Time: O(n log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut vec = vector![3, 2, 5, 4, 1];
/// vec.sort();
/// assert_eq!(vector![1, 2, 3, 4, 5], vec);
/// ```
pub fn sort(&mut self)
where
A: Ord,
{
self.sort_by(Ord::cmp)
}
/// Sort a vector using a comparator function.
///
/// Time: O(n log n)
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate imbl;
/// # use imbl::vector::Vector;
/// let mut vec = vector![3, 2, 5, 4, 1];
/// vec.sort_by(|left, right| left.cmp(right));
/// assert_eq!(vector![1, 2, 3, 4, 5], vec);
/// ```
pub fn sort_by<F>(&mut self, cmp: F)
where
F: Fn(&A, &A) -> Ordering,
{
let len = self.len();
if len > 1 {
sort::quicksort(self.focus_mut(), &cmp);
}
}
}
// Implementation details
impl<A> RRB<A> {
fn new(pool: &RRBPool<A>) -> Self {
RRB {
length: 0,
middle_level: 0,
outer_f: PoolRef::default(&pool.value_pool),
inner_f: PoolRef::default(&pool.value_pool),
middle: Ref::new(Node::new()),
inner_b: PoolRef::default(&pool.value_pool),
outer_b: PoolRef::default(&pool.value_pool),
}
}
#[cfg(any(test, feature = "debug"))]
fn assert_invariants(&self) {
let ml = self.middle.assert_invariants(self.middle_level);
assert_eq!(
self.length,
self.outer_f.len() + self.inner_f.len() + ml + self.inner_b.len() + self.outer_b.len()
);
}
}
impl<A: Clone> RRB<A> {
fn prune(&mut self) {
if self.middle.is_empty() {
self.middle = Ref::new(Node::new());
self.middle_level = 0;
} else {
while self.middle_level > 0 && self.middle.is_single() {
// FIXME could be optimised, cloning the node is expensive
self.middle = Ref::new(self.middle.first_child().clone());
self.middle_level -= 1;
}
}
}
fn pop_front(&mut self, pool: &RRBPool<A>) -> Option<A> {
if self.length == 0 {
return None;
}
if self.outer_f.is_empty() {
if self.inner_f.is_empty() {
if self.middle.is_empty() {
if self.inner_b.is_empty() {
swap(&mut self.outer_f, &mut self.outer_b);
} else {
swap(&mut self.outer_f, &mut self.inner_b);
}
} else {
self.outer_f = self.pop_middle(pool, Side::Left).unwrap();
}
} else {
swap(&mut self.outer_f, &mut self.inner_f);
}
}
self.length -= 1;
let outer_f = PoolRef::make_mut(&pool.value_pool, &mut self.outer_f);
Some(outer_f.pop_front())
}
fn pop_back(&mut self, pool: &RRBPool<A>) -> Option<A> {
if self.length == 0 {
return None;
}
if self.outer_b.is_empty() {
if self.inner_b.is_empty() {
if self.middle.is_empty() {
if self.inner_f.is_empty() {
swap(&mut self.outer_b, &mut self.outer_f);
} else {
swap(&mut self.outer_b, &mut self.inner_f);
}
} else {
self.outer_b = self.pop_middle(pool, Side::Right).unwrap();
}
} else {
swap(&mut self.outer_b, &mut self.inner_b);
}
}
self.length -= 1;
let outer_b = PoolRef::make_mut(&pool.value_pool, &mut self.outer_b);
Some(outer_b.pop_back())
}
fn push_front(&mut self, pool: &RRBPool<A>, value: A) {
if self.outer_f.is_full() {
swap(&mut self.outer_f, &mut self.inner_f);
if !self.outer_f.is_empty() {
let mut chunk = PoolRef::new(&pool.value_pool, Chunk::new());
swap(&mut chunk, &mut self.outer_f);
self.push_middle(pool, Side::Left, chunk);
}
}
self.length = self.length.checked_add(1).expect("Vector length overflow");
let outer_f = PoolRef::make_mut(&pool.value_pool, &mut self.outer_f);
outer_f.push_front(value)
}
fn push_back(&mut self, pool: &RRBPool<A>, value: A) {
if self.outer_b.is_full() {
swap(&mut self.outer_b, &mut self.inner_b);
if !self.outer_b.is_empty() {
let mut chunk = PoolRef::new(&pool.value_pool, Chunk::new());
swap(&mut chunk, &mut self.outer_b);
self.push_middle(pool, Side::Right, chunk);
}
}
self.length = self.length.checked_add(1).expect("Vector length overflow");
let outer_b = PoolRef::make_mut(&pool.value_pool, &mut self.outer_b);
outer_b.push_back(value)
}
fn push_middle(&mut self, pool: &RRBPool<A>, side: Side, chunk: PoolRef<Chunk<A>>) {
if chunk.is_empty() {
return;
}
let new_middle = {
let middle = Ref::make_mut(&mut self.middle);
match middle.push_chunk(pool, self.middle_level, side, chunk) {
PushResult::Done => return,
PushResult::Full(chunk, _num_drained) => Ref::from({
match side {
Side::Left => Node::from_chunk(pool, self.middle_level, chunk)
.join_branches(pool, middle.clone(), self.middle_level),
Side::Right => middle.clone().join_branches(
pool,
Node::from_chunk(pool, self.middle_level, chunk),
self.middle_level,
),
}
}),
}
};
self.middle_level += 1;
self.middle = new_middle;
}
fn pop_middle(&mut self, pool: &RRBPool<A>, side: Side) -> Option<PoolRef<Chunk<A>>> {
let chunk = {
let middle = Ref::make_mut(&mut self.middle);
match middle.pop_chunk(pool, self.middle_level, side) {
PopResult::Empty => return None,
PopResult::Done(chunk) => chunk,
PopResult::Drained(chunk) => {
middle.clear_node();
self.middle_level = 0;
chunk
}
}
};
Some(chunk)
}
}
#[inline]
fn replace_pool_def<A: PoolDefault>(pool: &Pool<A>, dest: &mut PoolRef<A>) -> PoolRef<A> {
replace(dest, PoolRef::default(pool))
}
// Core traits
impl<A> Default for Vector<A> {
fn default() -> Self {
Self::new()
}
}
impl<A: Clone> Clone for Vector<A> {
/// Clone a vector.
///
/// Time: O(1), or O(n) with a very small, bounded *n* for an inline vector.
fn clone(&self) -> Self {
Self {
vector: match &self.vector {
Inline(pool, chunk) => Inline(pool.clone(), chunk.clone()),
Single(pool, chunk) => Single(pool.clone(), chunk.clone()),
Full(pool, tree) => Full(pool.clone(), tree.clone()),
},
}
}
}
impl<A: Debug> Debug for Vector<A> {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
f.debug_list().entries(self.iter()).finish()
// match self {
// Full(rrb) => {
// writeln!(f, "Head: {:?} {:?}", rrb.outer_f, rrb.inner_f)?;
// rrb.middle.print(f, 0, rrb.middle_level)?;
// writeln!(f, "Tail: {:?} {:?}", rrb.inner_b, rrb.outer_b)
// }
// Single(_) => write!(f, "nowt"),
// }
}
}
#[cfg(not(has_specialisation))]
impl<A: PartialEq> PartialEq for Vector<A> {
fn eq(&self, other: &Self) -> bool {
self.len() == other.len() && self.iter().eq(other.iter())
}
}
#[cfg(has_specialisation)]
impl<A: PartialEq> PartialEq for Vector<A> {
default fn eq(&self, other: &Self) -> bool {
self.len() == other.len() && self.iter().eq(other.iter())
}
}
#[cfg(has_specialisation)]
impl<A: Eq> PartialEq for Vector<A> {
fn eq(&self, other: &Self) -> bool {
fn cmp_chunk<A>(left: &PoolRef<Chunk<A>>, right: &PoolRef<Chunk<A>>) -> bool {
(left.is_empty() && right.is_empty()) || PoolRef::ptr_eq(left, right)
}
if std::ptr::eq(self, other) {
return true;
}
match (&self.vector, &other.vector) {
(Single(_, left), Single(_, right)) => {
if cmp_chunk(left, right) {
return true;
}
self.iter().eq(other.iter())
}
(Full(_, left), Full(_, right)) => {
if left.length != right.length {
return false;
}
if cmp_chunk(&left.outer_f, &right.outer_f)
&& cmp_chunk(&left.inner_f, &right.inner_f)
&& cmp_chunk(&left.inner_b, &right.inner_b)
&& cmp_chunk(&left.outer_b, &right.outer_b)
&& ((left.middle.is_empty() && right.middle.is_empty())
|| Ref::ptr_eq(&left.middle, &right.middle))
{
return true;
}
self.iter().eq(other.iter())
}
_ => self.len() == other.len() && self.iter().eq(other.iter()),
}
}
}
impl<A: Eq> Eq for Vector<A> {}
impl<A: PartialOrd> PartialOrd for Vector<A> {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.iter().partial_cmp(other.iter())
}
}
impl<A: Ord> Ord for Vector<A> {
fn cmp(&self, other: &Self) -> Ordering {
self.iter().cmp(other.iter())
}
}
impl<A: Hash> Hash for Vector<A> {
fn hash<H: Hasher>(&self, state: &mut H) {
for i in self {
i.hash(state)
}
}
}
impl<A: Clone> Sum for Vector<A> {
fn sum<I>(it: I) -> Self
where
I: Iterator<Item = Self>,
{
it.fold(Self::new(), |a, b| a + b)
}
}
impl<A: Clone> Add for Vector<A> {
type Output = Vector<A>;
/// Concatenate two vectors.
///
/// Time: O(log n)
fn add(mut self, other: Self) -> Self::Output {
self.append(other);
self
}
}
impl<'a, A: Clone> Add for &'a Vector<A> {
type Output = Vector<A>;
/// Concatenate two vectors.
///
/// Time: O(log n)
fn add(self, other: Self) -> Self::Output {
let mut out = self.clone();
out.append(other.clone());
out
}
}
impl<A: Clone> Extend<A> for Vector<A> {
/// Add values to the end of a vector by consuming an iterator.
///
/// Time: O(n)
fn extend<I>(&mut self, iter: I)
where
I: IntoIterator<Item = A>,
{
for item in iter {
self.push_back(item)
}
}
}
impl<A> Index<usize> for Vector<A> {
type Output = A;
/// Get a reference to the value at index `index` in the vector.
///
/// Time: O(log n)
fn index(&self, index: usize) -> &Self::Output {
match self.get(index) {
Some(value) => value,
None => panic!(
"Vector::index: index out of bounds: {} < {}",
index,
self.len()
),
}
}
}
impl<A: Clone> IndexMut<usize> for Vector<A> {
/// Get a mutable reference to the value at index `index` in the
/// vector.
///
/// Time: O(log n)
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
match self.get_mut(index) {
Some(value) => value,
None => panic!("Vector::index_mut: index out of bounds"),
}
}
}
// Conversions
impl<'a, A> IntoIterator for &'a Vector<A> {
type Item = &'a A;
type IntoIter = Iter<'a, A>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<A: Clone> IntoIterator for Vector<A> {
type Item = A;
type IntoIter = ConsumingIter<A>;
fn into_iter(self) -> Self::IntoIter {
ConsumingIter::new(self)
}
}
impl<A: Clone> FromIterator<A> for Vector<A> {
/// Create a vector from an iterator.
///
/// Time: O(n)
fn from_iter<I>(iter: I) -> Self
where
I: IntoIterator<Item = A>,
{
let mut seq = Self::new();
for item in iter {
seq.push_back(item)
}
seq
}
}
impl<'s, 'a, A, OA> From<&'s Vector<&'a A>> for Vector<OA>
where
A: ToOwned<Owned = OA>,
OA: Borrow<A> + Clone,
{
fn from(vec: &Vector<&A>) -> Self {
vec.iter().map(|a| (*a).to_owned()).collect()
}
}
impl<A, const N: usize> From<[A; N]> for Vector<A>
where
A: Clone,
{
fn from(arr: [A; N]) -> Self {
IntoIterator::into_iter(arr).collect()
}
}
impl<'a, A: Clone> From<&'a [A]> for Vector<A> {
fn from(slice: &[A]) -> Self {
slice.iter().cloned().collect()
}
}
impl<A: Clone> From<Vec<A>> for Vector<A> {
/// Create a vector from a [`std::vec::Vec`][vec].
///
/// Time: O(n)
///
/// [vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
fn from(vec: Vec<A>) -> Self {
vec.into_iter().collect()
}
}
impl<'a, A: Clone> From<&'a Vec<A>> for Vector<A> {
/// Create a vector from a [`std::vec::Vec`][vec].
///
/// Time: O(n)
///
/// [vec]: https://doc.rust-lang.org/std/vec/struct.Vec.html
fn from(vec: &Vec<A>) -> Self {
vec.iter().cloned().collect()
}
}
// Iterators
/// An iterator over vectors with values of type `A`.
///
/// To obtain one, use [`Vector::iter()`][iter].
///
/// [iter]: enum.Vector.html#method.iter
// TODO: we'd like to support Clone even if A is not Clone, but it isn't trivial because
// the TreeFocus variant of Focus does need A to be Clone.
#[derive(Clone)]
pub struct Iter<'a, A> {
focus: Focus<'a, A>,
front_index: usize,
back_index: usize,
}
impl<'a, A> Iter<'a, A> {
fn new(seq: &'a Vector<A>) -> Self {
Iter {
focus: seq.focus(),
front_index: 0,
back_index: seq.len(),
}
}
fn from_focus(focus: Focus<'a, A>) -> Self {
Iter {
front_index: 0,
back_index: focus.len(),
focus,
}
}
}
impl<'a, A> Iterator for Iter<'a, A> {
type Item = &'a A;
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
let focus: &'a mut Focus<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let value = focus.get(self.front_index);
self.front_index += 1;
value
}
fn size_hint(&self) -> (usize, Option<usize>) {
let remaining = self.back_index - self.front_index;
(remaining, Some(remaining))
}
}
impl<'a, A> DoubleEndedIterator for Iter<'a, A> {
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next_back(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
self.back_index -= 1;
let focus: &'a mut Focus<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
focus.get(self.back_index)
}
}
impl<'a, A> ExactSizeIterator for Iter<'a, A> {}
impl<'a, A> FusedIterator for Iter<'a, A> {}
/// A mutable iterator over vectors with values of type `A`.
///
/// To obtain one, use [`Vector::iter_mut()`][iter_mut].
///
/// [iter_mut]: enum.Vector.html#method.iter_mut
pub struct IterMut<'a, A> {
focus: FocusMut<'a, A>,
front_index: usize,
back_index: usize,
}
impl<'a, A> IterMut<'a, A> {
fn from_focus(focus: FocusMut<'a, A>) -> Self {
IterMut {
front_index: 0,
back_index: focus.len(),
focus,
}
}
}
impl<'a, A: Clone> IterMut<'a, A> {
fn new(seq: &'a mut Vector<A>) -> Self {
let focus = seq.focus_mut();
let len = focus.len();
IterMut {
focus,
front_index: 0,
back_index: len,
}
}
}
impl<'a, A> Iterator for IterMut<'a, A>
where
A: 'a + Clone,
{
type Item = &'a mut A;
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
let focus: &'a mut FocusMut<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let value = focus.get_mut(self.front_index);
self.front_index += 1;
value
}
fn size_hint(&self) -> (usize, Option<usize>) {
let remaining = self.back_index - self.front_index;
(remaining, Some(remaining))
}
}
impl<'a, A> DoubleEndedIterator for IterMut<'a, A>
where
A: 'a + Clone,
{
/// Remove and return an element from the back of the iterator.
///
/// Time: O(1)*
fn next_back(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
self.back_index -= 1;
let focus: &'a mut FocusMut<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
focus.get_mut(self.back_index)
}
}
impl<'a, A: Clone> ExactSizeIterator for IterMut<'a, A> {}
impl<'a, A: Clone> FusedIterator for IterMut<'a, A> {}
/// A consuming iterator over vectors with values of type `A`.
pub struct ConsumingIter<A> {
vector: Vector<A>,
}
impl<A> ConsumingIter<A> {
fn new(vector: Vector<A>) -> Self {
Self { vector }
}
}
impl<A: Clone> Iterator for ConsumingIter<A> {
type Item = A;
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next(&mut self) -> Option<Self::Item> {
self.vector.pop_front()
}
fn size_hint(&self) -> (usize, Option<usize>) {
let len = self.vector.len();
(len, Some(len))
}
}
impl<A: Clone> DoubleEndedIterator for ConsumingIter<A> {
/// Remove and return an element from the back of the iterator.
///
/// Time: O(1)*
fn next_back(&mut self) -> Option<Self::Item> {
self.vector.pop_back()
}
}
impl<A: Clone> ExactSizeIterator for ConsumingIter<A> {}
impl<A: Clone> FusedIterator for ConsumingIter<A> {}
/// An iterator over the leaf nodes of a vector.
///
/// To obtain one, use [`Vector::chunks()`][chunks].
///
/// [chunks]: enum.Vector.html#method.chunks
pub struct Chunks<'a, A> {
focus: Focus<'a, A>,
front_index: usize,
back_index: usize,
}
impl<'a, A> Chunks<'a, A> {
fn new(seq: &'a Vector<A>) -> Self {
Chunks {
focus: seq.focus(),
front_index: 0,
back_index: seq.len(),
}
}
}
impl<'a, A> Iterator for Chunks<'a, A> {
type Item = &'a [A];
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
let focus: &'a mut Focus<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let (range, value) = focus.chunk_at(self.front_index);
self.front_index = range.end;
Some(value)
}
}
impl<'a, A> DoubleEndedIterator for Chunks<'a, A> {
/// Remove and return an element from the back of the iterator.
///
/// Time: O(1)*
fn next_back(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
self.back_index -= 1;
let focus: &'a mut Focus<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let (range, value) = focus.chunk_at(self.back_index);
self.back_index = range.start;
Some(value)
}
}
impl<'a, A> FusedIterator for Chunks<'a, A> {}
/// A mutable iterator over the leaf nodes of a vector.
///
/// To obtain one, use [`Vector::chunks_mut()`][chunks_mut].
///
/// [chunks_mut]: enum.Vector.html#method.chunks_mut
pub struct ChunksMut<'a, A> {
focus: FocusMut<'a, A>,
front_index: usize,
back_index: usize,
}
impl<'a, A: Clone> ChunksMut<'a, A> {
fn new(seq: &'a mut Vector<A>) -> Self {
let len = seq.len();
ChunksMut {
focus: seq.focus_mut(),
front_index: 0,
back_index: len,
}
}
}
impl<'a, A: Clone> Iterator for ChunksMut<'a, A> {
type Item = &'a mut [A];
/// Advance the iterator and return the next value.
///
/// Time: O(1)*
fn next(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
let focus: &'a mut FocusMut<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let (range, value) = focus.chunk_at(self.front_index);
self.front_index = range.end;
Some(value)
}
}
impl<'a, A: Clone> DoubleEndedIterator for ChunksMut<'a, A> {
/// Remove and return an element from the back of the iterator.
///
/// Time: O(1)*
fn next_back(&mut self) -> Option<Self::Item> {
if self.front_index >= self.back_index {
return None;
}
self.back_index -= 1;
let focus: &'a mut FocusMut<'a, A> = unsafe { &mut *(&mut self.focus as *mut _) };
let (range, value) = focus.chunk_at(self.back_index);
self.back_index = range.start;
Some(value)
}
}
impl<'a, A: Clone> FusedIterator for ChunksMut<'a, A> {}
// Proptest
#[cfg(any(test, feature = "proptest"))]
#[doc(hidden)]
pub mod proptest {
#[deprecated(
since = "14.3.0",
note = "proptest strategies have moved to imbl::proptest"
)]
pub use crate::proptest::vector;
}
// Tests
#[cfg(test)]
mod test {
use super::*;
use crate::proptest::vector;
use ::proptest::collection::vec;
use ::proptest::num::{i32, usize};
use ::proptest::proptest;
use static_assertions::{assert_impl_all, assert_not_impl_any};
assert_impl_all!(Vector<i32>: Send, Sync);
assert_not_impl_any!(Vector<*const i32>: Send, Sync);
assert_covariant!(Vector<T> in T);
#[test]
fn macro_allows_trailing_comma() {
let vec1 = vector![1, 2, 3];
let vec2 = vector![1, 2, 3,];
assert_eq!(vec1, vec2);
}
#[test]
fn indexing() {
let mut vec = vector![0, 1, 2, 3, 4, 5];
vec.push_front(0);
assert_eq!(0, *vec.get(0).unwrap());
assert_eq!(0, vec[0]);
}
#[test]
fn large_vector_focus() {
let input = Vector::from_iter(0..100_000);
let vec = input.clone();
let mut sum: i64 = 0;
let mut focus = vec.focus();
for i in 0..input.len() {
sum += *focus.index(i);
}
let expected: i64 = (0..100_000).sum();
assert_eq!(expected, sum);
}
#[test]
fn large_vector_focus_mut() {
let input = Vector::from_iter(0..100_000);
let mut vec = input.clone();
{
let mut focus = vec.focus_mut();
for i in 0..input.len() {
let p = focus.index_mut(i);
*p += 1;
}
}
let expected: Vector<i32> = input.into_iter().map(|i| i + 1).collect();
assert_eq!(expected, vec);
}
#[test]
fn issue_55_fwd() {
let mut l = Vector::new();
for i in 0..4098 {
l.append(Vector::unit(i));
}
l.append(Vector::unit(4098));
assert_eq!(Some(&4097), l.get(4097));
assert_eq!(Some(&4096), l.get(4096));
}
#[test]
fn issue_55_back() {
let mut l = Vector::unit(0);
for i in 0..4099 {
let mut tmp = Vector::unit(i + 1);
tmp.append(l);
l = tmp;
}
assert_eq!(Some(&4098), l.get(1));
assert_eq!(Some(&4097), l.get(2));
let len = l.len();
let _ = l.slice(2..len);
}
#[test]
fn issue_55_append() {
let mut vec1 = Vector::from_iter(0..92);
let vec2 = Vector::from_iter(0..165);
vec1.append(vec2);
}
#[test]
fn issue_70() {
// This test assumes that chunks are of size 64.
if CHUNK_SIZE != 64 {
return;
}
let mut x = Vector::new();
for _ in 0..262 {
x.push_back(0);
}
for _ in 0..97 {
x.pop_front();
}
for &offset in &[160, 163, 160] {
x.remove(offset);
}
for _ in 0..64 {
x.push_back(0);
}
// At this point middle contains three chunks of size 64, 64 and 1
// respectively. Previously the next `push_back()` would append another
// zero-sized chunk to middle even though there is enough space left.
match x.vector {
VectorInner::Full(_, ref tree) => {
assert_eq!(129, tree.middle.len());
assert_eq!(3, tree.middle.number_of_children());
}
_ => unreachable!(),
}
x.push_back(0);
match x.vector {
VectorInner::Full(_, ref tree) => {
assert_eq!(131, tree.middle.len());
assert_eq!(3, tree.middle.number_of_children())
}
_ => unreachable!(),
}
for _ in 0..64 {
x.push_back(0);
}
for _ in x.iter() {}
}
#[test]
fn issue_67() {
let mut l = Vector::unit(4100);
for i in (0..4099).rev() {
let mut tmp = Vector::unit(i);
tmp.append(l);
l = tmp;
}
assert_eq!(4100, l.len());
let len = l.len();
let tail = l.slice(1..len);
assert_eq!(1, l.len());
assert_eq!(4099, tail.len());
assert_eq!(Some(&0), l.get(0));
assert_eq!(Some(&1), tail.get(0));
}
#[test]
fn issue_74_simple_size() {
use crate::nodes::rrb::NODE_SIZE;
let mut x = Vector::new();
for _ in 0..(CHUNK_SIZE
* (
1 // inner_f
+ (2 * NODE_SIZE) // middle: two full Entry::Nodes (4096 elements each)
+ 1 // inner_b
+ 1
// outer_b
))
{
x.push_back(0u32);
}
let middle_first_node_start = CHUNK_SIZE;
let middle_second_node_start = middle_first_node_start + NODE_SIZE * CHUNK_SIZE;
// This reduces the size of the second node to 4095.
x.remove(middle_second_node_start);
// As outer_b is full, this will cause inner_b (length 64) to be pushed
// to middle. The first element will be merged into the second node, the
// remaining 63 elements will end up in a new node.
x.push_back(0u32);
match x.vector {
VectorInner::Full(_, tree) => {
if CHUNK_SIZE == 64 {
assert_eq!(3, tree.middle.number_of_children());
}
assert_eq!(
2 * NODE_SIZE * CHUNK_SIZE + CHUNK_SIZE - 1,
tree.middle.len()
);
}
_ => unreachable!(),
}
}
#[test]
fn issue_77() {
let mut x = Vector::new();
for _ in 0..44 {
x.push_back(0);
}
for _ in 0..20 {
x.insert(0, 0);
}
x.insert(1, 0);
for _ in 0..441 {
x.push_back(0);
}
for _ in 0..58 {
x.insert(0, 0);
}
x.insert(514, 0);
for _ in 0..73 {
x.push_back(0);
}
for _ in 0..10 {
x.insert(0, 0);
}
x.insert(514, 0);
}
#[test]
fn issue_105() {
let mut v = Vector::new();
for i in 0..270_000 {
v.push_front(i);
}
while !v.is_empty() {
v = v.take(v.len() - 1);
}
}
#[test]
fn issue_107_split_off_causes_overflow() {
let mut vec = Vector::from_iter(0..4289);
let mut control = Vec::from_iter(0..4289);
let chunk = 64;
while vec.len() >= chunk {
vec = vec.split_off(chunk);
control = control.split_off(chunk);
assert_eq!(vec.len(), control.len());
assert_eq!(control, vec.iter().cloned().collect::<Vec<_>>());
}
}
#[test]
fn collect_crash() {
let _vector: Vector<i32> = (0..5953).collect();
// let _vector: Vector<i32> = (0..16384).collect();
}
#[test]
fn issue_116() {
let vec = Vector::from_iter(0..300);
let rev_vec: Vector<u32> = vec.clone().into_iter().rev().collect();
assert_eq!(vec.len(), rev_vec.len());
}
#[test]
fn issue_131() {
let smol = std::iter::repeat(42).take(64).collect::<Vector<_>>();
let mut smol2 = smol.clone();
assert!(smol.ptr_eq(&smol2));
smol2.set(63, 420);
assert!(!smol.ptr_eq(&smol2));
let huge = std::iter::repeat(42).take(65).collect::<Vector<_>>();
let mut huge2 = huge.clone();
assert!(huge.ptr_eq(&huge2));
huge2.set(63, 420);
assert!(!huge.ptr_eq(&huge2));
}
#[test]
fn ptr_eq() {
for len in 32..256 {
let input = std::iter::repeat(42).take(len).collect::<Vector<_>>();
let mut inp2 = input.clone();
assert!(input.ptr_eq(&inp2));
inp2.set(len - 1, 98);
assert_ne!(inp2.get(len - 1), input.get(len - 1));
assert!(!input.ptr_eq(&inp2));
}
}
proptest! {
#[test]
fn iter(ref vec in vec(i32::ANY, 0..1000)) {
let seq: Vector<i32> = Vector::from_iter(vec.iter().cloned());
for (index, item) in seq.iter().enumerate() {
assert_eq!(&vec[index], item);
}
assert_eq!(vec.len(), seq.len());
}
#[test]
fn push_front_mut(ref input in vec(i32::ANY, 0..1000)) {
let mut vector = Vector::new();
for (count, value) in input.iter().cloned().enumerate() {
assert_eq!(count, vector.len());
vector.push_front(value);
assert_eq!(count + 1, vector.len());
}
let input2 = Vec::from_iter(input.iter().rev().cloned());
assert_eq!(input2, Vec::from_iter(vector.iter().cloned()));
}
#[test]
fn push_back_mut(ref input in vec(i32::ANY, 0..1000)) {
let mut vector = Vector::new();
for (count, value) in input.iter().cloned().enumerate() {
assert_eq!(count, vector.len());
vector.push_back(value);
assert_eq!(count + 1, vector.len());
}
assert_eq!(input, &Vec::from_iter(vector.iter().cloned()));
}
#[test]
fn pop_back_mut(ref input in vec(i32::ANY, 0..1000)) {
let mut vector = Vector::from_iter(input.iter().cloned());
assert_eq!(input.len(), vector.len());
for (index, value) in input.iter().cloned().enumerate().rev() {
match vector.pop_back() {
None => panic!("vector emptied unexpectedly"),
Some(item) => {
assert_eq!(index, vector.len());
assert_eq!(value, item);
}
}
}
assert_eq!(0, vector.len());
}
#[test]
fn pop_front_mut(ref input in vec(i32::ANY, 0..1000)) {
let mut vector = Vector::from_iter(input.iter().cloned());
assert_eq!(input.len(), vector.len());
for (index, value) in input.iter().cloned().rev().enumerate().rev() {
match vector.pop_front() {
None => panic!("vector emptied unexpectedly"),
Some(item) => {
assert_eq!(index, vector.len());
assert_eq!(value, item);
}
}
}
assert_eq!(0, vector.len());
}
// #[test]
// fn push_and_pop(ref input in vec(i32::ANY, 0..1000)) {
// let mut vector = Vector::new();
// for (count, value) in input.iter().cloned().enumerate() {
// assert_eq!(count, vector.len());
// vector.push_back(value);
// assert_eq!(count + 1, vector.len());
// }
// for (index, value) in input.iter().cloned().rev().enumerate().rev() {
// match vector.pop_front() {
// None => panic!("vector emptied unexpectedly"),
// Some(item) => {
// assert_eq!(index, vector.len());
// assert_eq!(value, item);
// }
// }
// }
// assert_eq!(true, vector.is_empty());
// }
#[test]
fn split(ref vec in vec(i32::ANY, 1..2000), split_pos in usize::ANY) {
let split_index = split_pos % (vec.len() + 1);
let mut left = Vector::from_iter(vec.iter().cloned());
let right = left.split_off(split_index);
assert_eq!(left.len(), split_index);
assert_eq!(right.len(), vec.len() - split_index);
for (index, item) in left.iter().enumerate() {
assert_eq!(& vec[index], item);
}
for (index, item) in right.iter().enumerate() {
assert_eq!(&vec[split_index + index], item);
}
}
#[test]
fn append(ref vec1 in vec(i32::ANY, 0..1000), ref vec2 in vec(i32::ANY, 0..1000)) {
let mut seq1 = Vector::from_iter(vec1.iter().cloned());
let seq2 = Vector::from_iter(vec2.iter().cloned());
assert_eq!(seq1.len(), vec1.len());
assert_eq!(seq2.len(), vec2.len());
seq1.append(seq2);
let mut vec = vec1.clone();
vec.extend(vec2);
assert_eq!(seq1.len(), vec.len());
for (index, item) in seq1.into_iter().enumerate() {
assert_eq!(vec[index], item);
}
}
#[test]
fn iter_mut(ref input in vector(i32::ANY, 0..10000)) {
let mut vec = input.clone();
{
for p in vec.iter_mut() {
*p = p.overflowing_add(1).0;
}
}
let expected: Vector<i32> = input.clone().into_iter().map(|i| i.overflowing_add(1).0).collect();
assert_eq!(expected, vec);
}
#[test]
fn focus(ref input in vector(i32::ANY, 0..10000)) {
let mut vec = input.clone();
{
let mut focus = vec.focus_mut();
for i in 0..input.len() {
let p = focus.index_mut(i);
*p = p.overflowing_add(1).0;
}
}
let expected: Vector<i32> = input.clone().into_iter().map(|i| i.overflowing_add(1).0).collect();
assert_eq!(expected, vec);
}
#[test]
fn focus_mut_split(ref input in vector(i32::ANY, 0..10000)) {
let mut vec = input.clone();
fn split_down(focus: FocusMut<'_, i32>) {
let len = focus.len();
if len < 8 {
for p in focus {
*p = p.overflowing_add(1).0;
}
} else {
let (left, right) = focus.split_at(len / 2);
split_down(left);
split_down(right);
}
}
split_down(vec.focus_mut());
let expected: Vector<i32> = input.clone().into_iter().map(|i| i.overflowing_add(1).0).collect();
assert_eq!(expected, vec);
}
#[test]
fn chunks(ref input in vector(i32::ANY, 0..10000)) {
let output: Vector<_> = input.leaves().flatten().cloned().collect();
assert_eq!(input, &output);
let rev_in: Vector<_> = input.iter().rev().cloned().collect();
let rev_out: Vector<_> = input.leaves().rev().flat_map(|c| c.iter().rev()).cloned().collect();
assert_eq!(rev_in, rev_out);
}
#[test]
fn chunks_mut(ref mut input_src in vector(i32::ANY, 0..10000)) {
let mut input = input_src.clone();
#[allow(clippy::map_clone)]
let output: Vector<_> = input.leaves_mut().flatten().map(|v| *v).collect();
assert_eq!(input, output);
let rev_in: Vector<_> = input.iter().rev().cloned().collect();
let rev_out: Vector<_> = input.leaves_mut().rev().flat_map(|c| c.iter().rev()).cloned().collect();
assert_eq!(rev_in, rev_out);
}
// The following two tests are very slow and there are unit tests above
// which test for regression of issue #55. It would still be good to
// run them occasionally.
// #[test]
// fn issue55_back(count in 0..10000, slice_at in usize::ANY) {
// let count = count as usize;
// let slice_at = slice_at % count;
// let mut l = Vector::unit(0);
// for _ in 0..count {
// let mut tmp = Vector::unit(0);
// tmp.append(l);
// l = tmp;
// }
// let len = l.len();
// l.slice(slice_at..len);
// }
// #[test]
// fn issue55_fwd(count in 0..10000, slice_at in usize::ANY) {
// let count = count as usize;
// let slice_at = slice_at % count;
// let mut l = Vector::new();
// for i in 0..count {
// l.append(Vector::unit(i));
// }
// assert_eq!(Some(&slice_at), l.get(slice_at));
// }
}
}