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
use crate::generic::node::{Address, Balance, Item, Node, WouldUnderflow};
use cc_traits::{SimpleCollectionMut, SimpleCollectionRef, Slab, SlabMut};
use std::{
borrow::Borrow,
cmp::Ordering,
hash::{Hash, Hasher},
iter::{DoubleEndedIterator, ExactSizeIterator, FromIterator, FusedIterator},
marker::PhantomData,
ops::{Bound, Index, RangeBounds},
};
mod entry;
mod ext;
pub use entry::*;
pub use ext::*;
/// Knuth order of the B-Trees.
///
/// Must be at least 4.
pub const M: usize = 8;
/// A map based on a B-Tree.
///
/// This offers an alternative over the standard implementation of B-Trees where nodes are
/// allocated in a contiguous array of [`Node`]s, reducing the cost of tree nodes allocations.
/// In addition the crate provides advanced functions to iterate through and update the map
/// efficiently.
///
/// # Basic usage
///
/// Basic usage is similar to the map data structures offered by the standard library.
/// ```
/// use btree_slab::BTreeMap;
///
/// // type inference lets us omit an explicit type signature (which
/// // would be `BTreeMap<&str, &str>` in this example).
/// let mut movie_reviews = BTreeMap::new();
///
/// // review some movies.
/// movie_reviews.insert("Office Space", "Deals with real issues in the workplace.");
/// movie_reviews.insert("Pulp Fiction", "Masterpiece.");
/// movie_reviews.insert("The Godfather", "Very enjoyable.");
/// movie_reviews.insert("The Blues Brothers", "Eye lyked it a lot.");
///
/// // check for a specific one.
/// if !movie_reviews.contains_key("Les Misérables") {
/// println!("We've got {} reviews, but Les Misérables ain't one.",
/// movie_reviews.len());
/// }
///
/// // oops, this review has a lot of spelling mistakes, let's delete it.
/// movie_reviews.remove("The Blues Brothers");
///
/// // look up the values associated with some keys.
/// let to_find = ["Up!", "Office Space"];
/// for movie in &to_find {
/// match movie_reviews.get(movie) {
/// Some(review) => println!("{}: {}", movie, review),
/// None => println!("{} is unreviewed.", movie)
/// }
/// }
///
/// // Look up the value for a key (will panic if the key is not found).
/// println!("Movie review: {}", movie_reviews["Office Space"]);
///
/// // iterate over everything.
/// for (movie, review) in &movie_reviews {
/// println!("{}: \"{}\"", movie, review);
/// }
/// ```
///
/// # Advanced usage
///
/// ## Entry API
///
/// This crate also reproduces the Entry API defined by the standard library,
/// which allows for more complex methods of getting, setting, updating and removing keys and
/// their values:
/// ```
/// use btree_slab::BTreeMap;
///
/// // type inference lets us omit an explicit type signature (which
/// // would be `BTreeMap<&str, u8>` in this example).
/// let mut player_stats: BTreeMap<&str, u8> = BTreeMap::new();
///
/// fn random_stat_buff() -> u8 {
/// // could actually return some random value here - let's just return
/// // some fixed value for now
/// 42
/// }
///
/// // insert a key only if it doesn't already exist
/// player_stats.entry("health").or_insert(100);
///
/// // insert a key using a function that provides a new value only if it
/// // doesn't already exist
/// player_stats.entry("defence").or_insert_with(random_stat_buff);
///
/// // update a key, guarding against the key possibly not being set
/// let stat = player_stats.entry("attack").or_insert(100);
/// *stat += random_stat_buff();
/// ```
///
/// ## Mutable iterators
///
/// This type provides two iterators providing mutable references to the entries:
/// - [`IterMut`] is a double-ended iterator following the standard
/// [`std::collections::btree_map::IterMut`] implementation.
/// - [`EntriesMut`] is a single-ended iterator that allows, in addition,
/// insertion and deletion of entries at the current iterator's position in the map.
/// An example is given below.
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert("a", 1);
/// map.insert("b", 2);
/// map.insert("d", 4);
///
/// let mut entries = map.entries_mut();
/// entries.next();
/// entries.next();
/// entries.insert("c", 3); // the inserted key must preserve the order of the map.
///
/// let entries: Vec<_> = map.into_iter().collect();
/// assert_eq!(entries, vec![("a", 1), ("b", 2), ("c", 3), ("d", 4)]);
/// ```
///
/// ## Custom allocation
///
/// This data structure is built on top of a slab data structure,
/// but is agnostic of the actual slab implementation which is taken as parameter (`C`).
/// If the `slab` feature is enabled,
/// the [`slab::Slab`] implementation is used by default by reexporting
/// `BTreeMap<K, V, slab::Slab<_>>` at the root of the crate.
/// Any container implementing "slab-like" functionalities can be used.
///
/// ## Extended API
///
/// This crate provides the two traits [`BTreeExt`] and [`BTreeExtMut`] that can be imported to
/// expose low-level operations on [`BTreeMap`].
/// The extended API allows the caller to directly navigate and access the entries of the tree
/// using their [`Address`].
/// These functions are not intended to be directly called by the users,
/// but can be used to extend the data structure with new functionalities.
///
/// # Correctness
///
/// It is a logic error for a key to be modified in such a way that the key's ordering relative
/// to any other key, as determined by the [`Ord`] trait, changes while it is in the map.
/// This is normally only possible through [`Cell`](`std::cell::Cell`),
/// [`RefCell`](`std::cell::RefCell`), global state, I/O, or unsafe code.
#[derive(Clone)]
pub struct BTreeMap<K, V, C> {
/// Allocated and free nodes.
nodes: C,
/// Root node id.
root: Option<usize>,
/// Number of items in the tree.
len: usize,
k: PhantomData<K>,
v: PhantomData<V>,
}
impl<K, V, C> BTreeMap<K, V, C> {
/// Create a new empty B-tree.
#[inline]
pub fn new() -> BTreeMap<K, V, C>
where
C: Default,
{
BTreeMap {
nodes: Default::default(),
root: None,
len: 0,
k: PhantomData,
v: PhantomData,
}
}
/// Returns `true` if the map contains no elements.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// assert!(a.is_empty());
/// a.insert(1, "a");
/// assert!(!a.is_empty());
/// ```
#[inline]
pub fn is_empty(&self) -> bool {
self.root.is_none()
}
/// Returns the number of elements in the map.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// assert_eq!(a.len(), 0);
/// a.insert(1, "a");
/// assert_eq!(a.len(), 1);
/// ```
#[inline]
pub fn len(&self) -> usize {
self.len
}
}
impl<K, V, C: Slab<Node<K, V>>> BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
{
/// Returns the key-value pair corresponding to the supplied key.
///
/// The supplied key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map: BTreeMap<i32, &str> = BTreeMap::new();
/// map.insert(1, "a");
/// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
/// assert_eq!(map.get_key_value(&2), None);
/// ```
#[inline]
pub fn get<Q: ?Sized>(&self, key: &Q) -> Option<&V>
where
K: Borrow<Q>,
Q: Ord,
{
match self.root {
Some(id) => self.get_in(key, id),
None => None,
}
}
/// Returns the key-value pair corresponding to the supplied key.
///
/// The supplied key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Examples
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
/// assert_eq!(map.get_key_value(&2), None);
/// ```
#[inline]
pub fn get_key_value<Q: ?Sized>(&self, k: &Q) -> Option<(&K, &V)>
where
K: Borrow<Q>,
Q: Ord,
{
match self.address_of(k) {
Ok(addr) => {
let item = self.item(addr).unwrap();
Some((item.key(), item.value()))
}
Err(_) => None,
}
}
/// Returns the first key-value pair in the map.
/// The key in this pair is the minimum key in the map.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// assert_eq!(map.first_key_value(), None);
/// map.insert(1, "b");
/// map.insert(2, "a");
/// assert_eq!(map.first_key_value(), Some((&1, &"b")));
/// ```
#[inline]
pub fn first_key_value(&self) -> Option<(&K, &V)> {
match self.first_item_address() {
Some(addr) => {
let item = self.item(addr).unwrap();
Some((item.key(), item.value()))
}
None => None,
}
}
/// Returns the last key-value pair in the map.
/// The key in this pair is the maximum key in the map.
///
/// # Examples
///
/// Basic usage:
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "b");
/// map.insert(2, "a");
/// assert_eq!(map.last_key_value(), Some((&2, &"a")));
/// ```
#[inline]
pub fn last_key_value(&self) -> Option<(&K, &V)> {
match self.last_item_address() {
Some(addr) => {
let item = self.item(addr).unwrap();
Some((item.key(), item.value()))
}
None => None,
}
}
/// Gets an iterator over the entries of the map, sorted by key.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(3, "c");
/// map.insert(2, "b");
/// map.insert(1, "a");
///
/// for (key, value) in map.iter() {
/// println!("{}: {}", key, value);
/// }
///
/// let (first_key, first_value) = map.iter().next().unwrap();
/// assert_eq!((*first_key, *first_value), (1, "a"));
/// ```
#[inline]
pub fn iter(&self) -> Iter<K, V, C> {
Iter::new(self)
}
/// Gets an iterator over the keys of the map, in sorted order.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(2, "b");
/// a.insert(1, "a");
///
/// let keys: Vec<_> = a.keys().cloned().collect();
/// assert_eq!(keys, [1, 2]);
/// ```
#[inline]
pub fn keys(&self) -> Keys<K, V, C> {
Keys { inner: self.iter() }
}
/// Gets an iterator over the values of the map, in order by key.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(1, "hello");
/// a.insert(2, "goodbye");
///
/// let values: Vec<&str> = a.values().cloned().collect();
/// assert_eq!(values, ["hello", "goodbye"]);
/// ```
#[inline]
pub fn values(&self) -> Values<K, V, C> {
Values { inner: self.iter() }
}
/// Constructs a double-ended iterator over a sub-range of elements in the map.
/// The simplest way is to use the range syntax `min..max`, thus `range(min..max)` will
/// yield elements from min (inclusive) to max (exclusive).
/// The range may also be entered as `(Bound<T>, Bound<T>)`, so for example
/// `range((Excluded(4), Included(10)))` will yield a left-exclusive, right-inclusive
/// range from 4 to 10.
///
/// # Panics
///
/// Panics if range `start > end`.
/// Panics if range `start == end` and both bounds are `Excluded`.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
/// use std::ops::Bound::Included;
///
/// let mut map = BTreeMap::new();
/// map.insert(3, "a");
/// map.insert(5, "b");
/// map.insert(8, "c");
/// for (&key, &value) in map.range((Included(&4), Included(&8))) {
/// println!("{}: {}", key, value);
/// }
/// assert_eq!(Some((&5, &"b")), map.range(4..).next());
/// ```
#[inline]
pub fn range<T: ?Sized, R>(&self, range: R) -> Range<K, V, C>
where
T: Ord,
K: Borrow<T>,
R: RangeBounds<T>,
{
Range::new(self, range)
}
/// Returns `true` if the map contains a value for the specified key.
///
/// The key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Example
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map: BTreeMap<i32, &str> = BTreeMap::new();
/// map.insert(1, "a");
/// assert_eq!(map.contains_key(&1), true);
/// assert_eq!(map.contains_key(&2), false);
/// ```
#[inline]
pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool
where
K: Borrow<Q>,
Q: Ord,
{
self.get(key).is_some()
}
/// Write the tree in the DOT graph descrption language.
///
/// Requires the `dot` feature.
#[cfg(feature = "dot")]
#[inline]
pub fn dot_write<W: std::io::Write>(&self, f: &mut W) -> std::io::Result<()>
where
K: std::fmt::Display,
V: std::fmt::Display,
{
write!(f, "digraph tree {{\n\tnode [shape=record];\n")?;
if let Some(id) = self.root {
self.dot_write_node(f, id)?
}
write!(f, "}}")
}
/// Write the given node in the DOT graph descrption language.
///
/// Requires the `dot` feature.
#[cfg(feature = "dot")]
#[inline]
fn dot_write_node<W: std::io::Write>(&self, f: &mut W, id: usize) -> std::io::Result<()>
where
K: std::fmt::Display,
V: std::fmt::Display,
{
let name = format!("n{}", id);
let node = self.node(id);
write!(f, "\t{} [label=\"", name)?;
if let Some(parent) = node.parent() {
write!(f, "({})|", parent)?;
}
node.dot_write_label(f)?;
writeln!(f, "({})\"];", id)?;
for child_id in node.children() {
self.dot_write_node(f, child_id)?;
let child_name = format!("n{}", child_id);
writeln!(f, "\t{} -> {}", name, child_name)?;
}
Ok(())
}
}
impl<K, V, C: SlabMut<Node<K, V>>> BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
/// Clears the map, removing all elements.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(1, "a");
/// a.clear();
/// assert!(a.is_empty());
/// ```
#[inline]
pub fn clear(&mut self)
where
C: cc_traits::Clear,
{
self.root = None;
self.len = 0;
self.nodes.clear()
}
/// Returns a mutable reference to the value corresponding to the key.
///
/// The key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// if let Some(x) = map.get_mut(&1) {
/// *x = "b";
/// }
/// assert_eq!(map[&1], "b");
/// ```
#[inline]
pub fn get_mut(&mut self, key: &K) -> Option<&mut V>
where
K: Ord,
{
match self.root {
Some(id) => self.get_mut_in(key, id),
None => None,
}
}
/// Gets the given key's corresponding entry in the map for in-place manipulation.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut letters = BTreeMap::new();
///
/// for ch in "a short treatise on fungi".chars() {
/// let counter = letters.entry(ch).or_insert(0);
/// *counter += 1;
/// }
///
/// assert_eq!(letters[&'s'], 2);
/// assert_eq!(letters[&'t'], 3);
/// assert_eq!(letters[&'u'], 1);
/// assert_eq!(letters.get(&'y'), None);
/// ```
#[inline]
pub fn entry(&mut self, key: K) -> Entry<K, V, C>
where
K: Ord,
{
match self.address_of(&key) {
Ok(addr) => Entry::Occupied(OccupiedEntry { map: self, addr }),
Err(addr) => Entry::Vacant(VacantEntry {
map: self,
key,
addr,
}),
}
}
/// Returns the first entry in the map for in-place manipulation.
/// The key of this entry is the minimum key in the map.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// map.insert(2, "b");
/// if let Some(mut entry) = map.first_entry() {
/// if *entry.key() > 0 {
/// entry.insert("first");
/// }
/// }
/// assert_eq!(*map.get(&1).unwrap(), "first");
/// assert_eq!(*map.get(&2).unwrap(), "b");
/// ```
#[inline]
pub fn first_entry(&mut self) -> Option<OccupiedEntry<K, V, C>> {
self.first_item_address()
.map(move |addr| OccupiedEntry { map: self, addr })
}
/// Returns the last entry in the map for in-place manipulation.
/// The key of this entry is the maximum key in the map.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// map.insert(2, "b");
/// if let Some(mut entry) = map.last_entry() {
/// if *entry.key() > 0 {
/// entry.insert("last");
/// }
/// }
/// assert_eq!(*map.get(&1).unwrap(), "a");
/// assert_eq!(*map.get(&2).unwrap(), "last");
/// ```
#[inline]
pub fn last_entry(&mut self) -> Option<OccupiedEntry<K, V, C>> {
self.last_item_address()
.map(move |addr| OccupiedEntry { map: self, addr })
}
/// Insert a key-value pair in the tree.
#[inline]
pub fn insert(&mut self, key: K, value: V) -> Option<V>
where
K: Ord,
{
match self.address_of(&key) {
Ok(addr) => Some(self.replace_value_at(addr, value)),
Err(addr) => {
self.insert_exactly_at(addr, Item::new(key, value), None);
None
}
}
}
/// Replace a key-value pair in the tree.
#[inline]
pub fn replace(&mut self, key: K, value: V) -> Option<(K, V)>
where
K: Ord,
{
match self.address_of(&key) {
Ok(addr) => Some(self.replace_at(addr, key, value)),
Err(addr) => {
self.insert_exactly_at(addr, Item::new(key, value), None);
None
}
}
}
/// Removes and returns the first element in the map.
/// The key of this element is the minimum key that was in the map.
///
/// # Example
///
/// Draining elements in ascending order, while keeping a usable map each iteration.
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// map.insert(2, "b");
/// while let Some((key, _val)) = map.pop_first() {
/// assert!(map.iter().all(|(k, _v)| *k > key));
/// }
/// assert!(map.is_empty());
/// ```
#[inline]
pub fn pop_first(&mut self) -> Option<(K, V)> {
self.first_entry().map(|entry| entry.remove_entry())
}
/// Removes and returns the last element in the map.
/// The key of this element is the maximum key that was in the map.
///
/// # Example
///
/// Draining elements in descending order, while keeping a usable map each iteration.
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// map.insert(2, "b");
/// while let Some((key, _val)) = map.pop_last() {
/// assert!(map.iter().all(|(k, _v)| *k < key));
/// }
/// assert!(map.is_empty());
/// ```
#[inline]
pub fn pop_last(&mut self) -> Option<(K, V)> {
self.last_entry().map(|entry| entry.remove_entry())
}
/// Removes a key from the map, returning the value at the key if the key
/// was previously in the map.
///
/// The key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// assert_eq!(map.remove(&1), Some("a"));
/// assert_eq!(map.remove(&1), None);
/// ```
#[inline]
pub fn remove<Q: ?Sized>(&mut self, key: &Q) -> Option<V>
where
K: Borrow<Q>,
Q: Ord,
{
match self.address_of(key) {
Ok(addr) => {
let (item, _) = self.remove_at(addr).unwrap();
Some(item.into_value())
}
Err(_) => None,
}
}
/// Removes a key from the map, returning the stored key and value if the key
/// was previously in the map.
///
/// The key may be any borrowed form of the map's key type, but the ordering
/// on the borrowed form *must* match the ordering on the key type.
///
/// # Example
///
/// Basic usage:
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert(1, "a");
/// assert_eq!(map.remove_entry(&1), Some((1, "a")));
/// assert_eq!(map.remove_entry(&1), None);
/// ```
#[inline]
pub fn remove_entry<Q: ?Sized>(&mut self, key: &Q) -> Option<(K, V)>
where
K: Borrow<Q>,
Q: Ord,
{
match self.address_of(key) {
Ok(addr) => {
let (item, _) = self.remove_at(addr).unwrap();
Some(item.into_pair())
}
Err(_) => None,
}
}
/// Removes and returns the binding in the map, if any, of which key matches the given one.
#[inline]
pub fn take<Q: ?Sized>(&mut self, key: &Q) -> Option<(K, V)>
where
K: Borrow<Q>,
Q: Ord,
{
match self.address_of(key) {
Ok(addr) => {
let (item, _) = self.remove_at(addr).unwrap();
Some(item.into_pair())
}
Err(_) => None,
}
}
/// General-purpose update function.
///
/// This can be used to insert, compare, replace or remove the value associated to the given
/// `key` in the tree.
/// The action to perform is specified by the `action` function.
/// This function is called once with:
/// - `Some(value)` when `value` is aready associated to `key` or
/// - `None` when the `key` is not associated to any value.
///
/// The `action` function must return a pair (`new_value`, `result`) where
/// `new_value` is the new value to be associated to `key`
/// (if it is `None` any previous binding is removed) and
/// `result` is the value returned by the entire `update` function call.
#[inline]
pub fn update<T, F>(&mut self, key: K, action: F) -> T
where
K: Ord,
F: FnOnce(Option<V>) -> (Option<V>, T),
{
match self.root {
Some(id) => self.update_in(id, key, action),
None => {
let (to_insert, result) = action(None);
if let Some(value) = to_insert {
let new_root = Node::leaf(None, Item::new(key, value));
self.root = Some(self.allocate_node(new_root));
self.len += 1;
}
result
}
}
}
/// Gets a mutable iterator over the entries of the map, sorted by key.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert("a", 1);
/// map.insert("b", 2);
/// map.insert("c", 3);
///
/// // add 10 to the value if the key isn't "a"
/// for (key, value) in map.iter_mut() {
/// if key != &"a" {
/// *value += 10;
/// }
/// }
/// ```
#[inline]
pub fn iter_mut(&mut self) -> IterMut<K, V, C> {
IterMut::new(self)
}
/// Gets a mutable iterator over the entries of the map, sorted by key, that allows insertion and deletion of the iterated entries.
///
/// # Correctness
///
/// It is safe to insert any key-value pair while iterating,
/// however this might break the well-formedness
/// of the underlying tree, which relies on several invariants.
/// To preserve these invariants,
/// the inserted key must be *strictly greater* than the previous visited item's key,
/// and *strictly less* than the next visited item
/// (which you can retrive through [`EntriesMut::peek`] without moving the iterator).
/// If this rule is not respected, the data structure will become unusable
/// (invalidate the specification of every method of the API).
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map = BTreeMap::new();
/// map.insert("a", 1);
/// map.insert("b", 2);
/// map.insert("d", 4);
///
/// let mut entries = map.entries_mut();
/// entries.next();
/// entries.next();
/// entries.insert("c", 3);
///
/// let entries: Vec<_> = map.into_iter().collect();
/// assert_eq!(entries, vec![("a", 1), ("b", 2), ("c", 3), ("d", 4)]);
/// ```
#[inline]
pub fn entries_mut(&mut self) -> EntriesMut<K, V, C> {
EntriesMut::new(self)
}
/// Constructs a mutable double-ended iterator over a sub-range of elements in the map.
/// The simplest way is to use the range syntax `min..max`, thus `range(min..max)` will
/// yield elements from min (inclusive) to max (exclusive).
/// The range may also be entered as `(Bound<T>, Bound<T>)`, so for example
/// `range((Excluded(4), Included(10)))` will yield a left-exclusive, right-inclusive
/// range from 4 to 10.
///
/// # Panics
///
/// Panics if range `start > end`.
/// Panics if range `start == end` and both bounds are `Excluded`.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map: BTreeMap<&str, i32> = ["Alice", "Bob", "Carol", "Cheryl"]
/// .iter()
/// .map(|&s| (s, 0))
/// .collect();
/// for (_, balance) in map.range_mut("B".."Cheryl") {
/// *balance += 100;
/// }
/// for (name, balance) in &map {
/// println!("{} => {}", name, balance);
/// }
/// ```
#[inline]
pub fn range_mut<T: ?Sized, R>(&mut self, range: R) -> RangeMut<K, V, C>
where
T: Ord,
K: Borrow<T>,
R: RangeBounds<T>,
{
RangeMut::new(self, range)
}
/// Gets a mutable iterator over the values of the map, in order by key.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(1, String::from("hello"));
/// a.insert(2, String::from("goodbye"));
///
/// for value in a.values_mut() {
/// value.push_str("!");
/// }
///
/// let values: Vec<String> = a.values().cloned().collect();
/// assert_eq!(values, [String::from("hello!"),
/// String::from("goodbye!")]);
/// ```
#[inline]
pub fn values_mut(&mut self) -> ValuesMut<K, V, C> {
ValuesMut {
inner: self.iter_mut(),
}
}
/// Creates an iterator which uses a closure to determine if an element should be removed.
///
/// If the closure returns true, the element is removed from the map and yielded.
/// If the closure returns false, or panics, the element remains in the map and will not be
/// yielded.
///
/// Note that `drain_filter` lets you mutate every value in the filter closure, regardless of
/// whether you choose to keep or remove it.
///
/// If the iterator is only partially consumed or not consumed at all, each of the remaining
/// elements will still be subjected to the closure and removed and dropped if it returns true.
///
/// It is unspecified how many more elements will be subjected to the closure
/// if a panic occurs in the closure, or a panic occurs while dropping an element,
/// or if the `DrainFilter` value is leaked.
///
/// # Example
///
/// Splitting a map into even and odd keys, reusing the original map:
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x)).collect();
/// let evens: BTreeMap<_, _> = map.drain_filter(|k, _v| k % 2 == 0).collect();
/// let odds = map;
/// assert_eq!(evens.keys().copied().collect::<Vec<_>>(), vec![0, 2, 4, 6]);
/// assert_eq!(odds.keys().copied().collect::<Vec<_>>(), vec![1, 3, 5, 7]);
/// ```
#[inline]
pub fn drain_filter<F>(&mut self, pred: F) -> DrainFilter<K, V, C, F>
where
F: FnMut(&K, &mut V) -> bool,
{
DrainFilter::new(self, pred)
}
/// Retains only the elements specified by the predicate.
///
/// In other words, remove all pairs `(k, v)` such that `f(&k, &mut v)` returns `false`.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x*10)).collect();
/// // Keep only the elements with even-numbered keys.
/// map.retain(|&k, _| k % 2 == 0);
/// assert!(map.into_iter().eq(vec![(0, 0), (2, 20), (4, 40), (6, 60)]));
/// ```
#[inline]
pub fn retain<F>(&mut self, mut f: F)
where
F: FnMut(&K, &mut V) -> bool,
{
self.drain_filter(|k, v| !f(k, v));
}
/// Moves all elements from `other` into `Self`, leaving `other` empty.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(1, "a");
/// a.insert(2, "b");
/// a.insert(3, "c");
///
/// let mut b = BTreeMap::new();
/// b.insert(3, "d");
/// b.insert(4, "e");
/// b.insert(5, "f");
///
/// a.append(&mut b);
///
/// assert_eq!(a.len(), 5);
/// assert_eq!(b.len(), 0);
///
/// assert_eq!(a[&1], "a");
/// assert_eq!(a[&2], "b");
/// assert_eq!(a[&3], "d");
/// assert_eq!(a[&4], "e");
/// assert_eq!(a[&5], "f");
/// ```
#[inline]
pub fn append(&mut self, other: &mut Self)
where
K: Ord,
C: Default,
{
// Do we have to append anything at all?
if other.is_empty() {
return;
}
// We can just swap `self` and `other` if `self` is empty.
if self.is_empty() {
std::mem::swap(self, other);
return;
}
let other = std::mem::take(other);
for (key, value) in other {
self.insert(key, value);
}
}
/// Creates a consuming iterator visiting all the keys, in sorted order.
/// The map cannot be used after calling this.
/// The iterator element type is `K`.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(2, "b");
/// a.insert(1, "a");
///
/// let keys: Vec<i32> = a.into_keys().collect();
/// assert_eq!(keys, [1, 2]);
/// ```
#[inline]
pub fn into_keys(self) -> IntoKeys<K, V, C> {
IntoKeys {
inner: self.into_iter(),
}
}
/// Creates a consuming iterator visiting all the values, in order by key.
/// The map cannot be used after calling this.
/// The iterator element type is `V`.
///
/// # Example
///
/// ```
/// use btree_slab::BTreeMap;
///
/// let mut a = BTreeMap::new();
/// a.insert(1, "hello");
/// a.insert(2, "goodbye");
///
/// let values: Vec<&str> = a.into_values().collect();
/// assert_eq!(values, ["hello", "goodbye"]);
/// ```
#[inline]
pub fn into_values(self) -> IntoValues<K, V, C> {
IntoValues {
inner: self.into_iter(),
}
}
/// Try to rotate left the node `id` to benefits the child number `deficient_child_index`.
///
/// Returns true if the rotation succeeded, of false if the target child has no right sibling,
/// or if this sibling would underflow.
#[inline]
fn try_rotate_left(
&mut self,
id: usize,
deficient_child_index: usize,
addr: &mut Address,
) -> bool {
let pivot_offset = deficient_child_index.into();
let right_sibling_index = deficient_child_index + 1;
let (right_sibling_id, deficient_child_id) = {
let node = self.node(id);
if right_sibling_index >= node.child_count() {
return false; // no right sibling
}
(
node.child_id(right_sibling_index),
node.child_id(deficient_child_index),
)
};
match self.node_mut(right_sibling_id).pop_left() {
Ok((mut value, opt_child_id)) => {
std::mem::swap(
&mut value,
self.node_mut(id).item_mut(pivot_offset).unwrap(),
);
let left_offset = self
.node_mut(deficient_child_id)
.push_right(value, opt_child_id);
// update opt_child's parent
if let Some(child_id) = opt_child_id {
self.node_mut(child_id).set_parent(Some(deficient_child_id))
}
// update address.
if addr.id == right_sibling_id {
// addressed item is in the right node.
if addr.offset == 0 {
// addressed item is moving to pivot.
addr.id = id;
addr.offset = pivot_offset;
} else {
// addressed item stays on right.
addr.offset.decr();
}
} else if addr.id == id {
// addressed item is in the parent node.
if addr.offset == pivot_offset {
// addressed item is the pivot, moving to the left (deficient) node.
addr.id = deficient_child_id;
addr.offset = left_offset;
}
}
true // rotation succeeded
}
Err(WouldUnderflow) => false, // the right sibling would underflow.
}
}
/// Try to rotate right the node `id` to benefits the child number `deficient_child_index`.
///
/// Returns true if the rotation succeeded, of false if the target child has no left sibling,
/// or if this sibling would underflow.
#[inline]
fn try_rotate_right(
&mut self,
id: usize,
deficient_child_index: usize,
addr: &mut Address,
) -> bool {
if deficient_child_index > 0 {
let left_sibling_index = deficient_child_index - 1;
let pivot_offset = left_sibling_index.into();
let (left_sibling_id, deficient_child_id) = {
let node = self.node(id);
(
node.child_id(left_sibling_index),
node.child_id(deficient_child_index),
)
};
match self.node_mut(left_sibling_id).pop_right() {
Ok((left_offset, mut value, opt_child_id)) => {
std::mem::swap(
&mut value,
self.node_mut(id).item_mut(pivot_offset).unwrap(),
);
self.node_mut(deficient_child_id)
.push_left(value, opt_child_id);
// update opt_child's parent
if let Some(child_id) = opt_child_id {
self.node_mut(child_id).set_parent(Some(deficient_child_id))
}
// update address.
if addr.id == deficient_child_id {
// addressed item is in the right (deficient) node.
addr.offset.incr();
} else if addr.id == left_sibling_id {
// addressed item is in the left node.
if addr.offset == left_offset {
// addressed item is moving to pivot.
addr.id = id;
addr.offset = pivot_offset;
}
} else if addr.id == id {
// addressed item is in the parent node.
if addr.offset == pivot_offset {
// addressed item is the pivot, moving to the left (deficient) node.
addr.id = deficient_child_id;
addr.offset = 0.into();
}
}
true // rotation succeeded
}
Err(WouldUnderflow) => false, // the left sibling would underflow.
}
} else {
false // no left sibling.
}
}
/// Merge the child `deficient_child_index` in node `id` with one of its direct sibling.
#[inline]
fn merge(
&mut self,
id: usize,
deficient_child_index: usize,
mut addr: Address,
) -> (Balance, Address) {
let (offset, left_id, right_id, separator, balance) = if deficient_child_index > 0 {
// merge with left sibling
self.node_mut(id)
.merge(deficient_child_index - 1, deficient_child_index)
} else {
// merge with right sibling
self.node_mut(id)
.merge(deficient_child_index, deficient_child_index + 1)
};
// update children's parent.
let right_node = self.release_node(right_id);
for right_child_id in right_node.children() {
self.node_mut(right_child_id).set_parent(Some(left_id));
}
// actually merge.
let left_offset = self.node_mut(left_id).append(separator, right_node);
// update addr.
if addr.id == id {
match addr.offset.partial_cmp(&offset) {
Some(Ordering::Equal) => {
addr.id = left_id;
addr.offset = left_offset
}
Some(Ordering::Greater) => addr.offset.decr(),
_ => (),
}
} else if addr.id == right_id {
addr.id = left_id;
addr.offset = (addr.offset.unwrap() + left_offset.unwrap() + 1).into();
}
(balance, addr)
}
}
impl<K: Ord, Q: ?Sized, V, C: Slab<Node<K, V>>> Index<&Q> for BTreeMap<K, V, C>
where
K: Borrow<Q>,
Q: Ord,
C: SimpleCollectionRef,
{
type Output = V;
/// Returns a reference to the value corresponding to the supplied key.
///
/// # Panics
///
/// Panics if the key is not present in the `BTreeMap`.
#[inline]
fn index(&self, key: &Q) -> &V {
self.get(key).expect("no entry found for key")
}
}
impl<K, L: PartialEq<K>, V, W: PartialEq<V>, C: Slab<Node<K, V>>, D: Slab<Node<L, W>>>
PartialEq<BTreeMap<L, W, D>> for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
D: SimpleCollectionRef,
{
fn eq(&self, other: &BTreeMap<L, W, D>) -> bool {
if self.len() == other.len() {
let mut it1 = self.iter();
let mut it2 = other.iter();
loop {
match (it1.next(), it2.next()) {
(None, None) => break,
(Some((k, v)), Some((l, w))) => {
if l != k || w != v {
return false;
}
}
_ => return false,
}
}
true
} else {
false
}
}
}
impl<K, V, C: Default> Default for BTreeMap<K, V, C> {
#[inline]
fn default() -> Self {
BTreeMap::new()
}
}
impl<K: Ord, V, C: SlabMut<Node<K, V>> + Default> FromIterator<(K, V)> for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn from_iter<T>(iter: T) -> BTreeMap<K, V, C>
where
T: IntoIterator<Item = (K, V)>,
{
let mut map = BTreeMap::new();
for (key, value) in iter {
map.insert(key, value);
}
map
}
}
impl<K: Ord, V, C: SlabMut<Node<K, V>>> Extend<(K, V)> for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn extend<T>(&mut self, iter: T)
where
T: IntoIterator<Item = (K, V)>,
{
for (key, value) in iter {
self.insert(key, value);
}
}
}
impl<'a, K: Ord + Copy, V: Copy, C: SlabMut<Node<K, V>>> Extend<(&'a K, &'a V)>
for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn extend<T>(&mut self, iter: T)
where
T: IntoIterator<Item = (&'a K, &'a V)>,
{
self.extend(iter.into_iter().map(|(&key, &value)| (key, value)));
}
}
impl<K: Eq, V: Eq, C: Slab<Node<K, V>>> Eq for BTreeMap<K, V, C> where C: SimpleCollectionRef {}
impl<K, L: PartialOrd<K>, V, W: PartialOrd<V>, C: Slab<Node<K, V>>, D: Slab<Node<L, W>>>
PartialOrd<BTreeMap<L, W, D>> for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
D: SimpleCollectionRef,
{
fn partial_cmp(&self, other: &BTreeMap<L, W, D>) -> Option<Ordering> {
let mut it1 = self.iter();
let mut it2 = other.iter();
loop {
match (it1.next(), it2.next()) {
(None, None) => return Some(Ordering::Equal),
(_, None) => return Some(Ordering::Greater),
(None, _) => return Some(Ordering::Less),
(Some((k, v)), Some((l, w))) => match l.partial_cmp(k) {
Some(Ordering::Greater) => return Some(Ordering::Less),
Some(Ordering::Less) => return Some(Ordering::Greater),
Some(Ordering::Equal) => match w.partial_cmp(v) {
Some(Ordering::Greater) => return Some(Ordering::Less),
Some(Ordering::Less) => return Some(Ordering::Greater),
Some(Ordering::Equal) => (),
None => return None,
},
None => return None,
},
}
}
}
}
impl<K: Ord, V: Ord, C: Slab<Node<K, V>>> Ord for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
{
fn cmp(&self, other: &BTreeMap<K, V, C>) -> Ordering {
let mut it1 = self.iter();
let mut it2 = other.iter();
loop {
match (it1.next(), it2.next()) {
(None, None) => return Ordering::Equal,
(_, None) => return Ordering::Greater,
(None, _) => return Ordering::Less,
(Some((k, v)), Some((l, w))) => match l.cmp(k) {
Ordering::Greater => return Ordering::Less,
Ordering::Less => return Ordering::Greater,
Ordering::Equal => match w.cmp(v) {
Ordering::Greater => return Ordering::Less,
Ordering::Less => return Ordering::Greater,
Ordering::Equal => (),
},
},
}
}
}
}
impl<K: Hash, V: Hash, C: Slab<Node<K, V>>> Hash for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn hash<H: Hasher>(&self, h: &mut H) {
for (k, v) in self {
k.hash(h);
v.hash(h);
}
}
}
pub struct Iter<'a, K, V, C> {
/// The tree reference.
btree: &'a BTreeMap<K, V, C>,
/// Address of the next item.
addr: Option<Address>,
end: Option<Address>,
len: usize,
}
impl<'a, K, V, C: Slab<Node<K, V>>> Iter<'a, K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn new(btree: &'a BTreeMap<K, V, C>) -> Self {
let addr = btree.first_item_address();
let len = btree.len();
Iter {
btree,
addr,
end: None,
len,
}
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> Iterator for Iter<'a, K, V, C>
where
C: SimpleCollectionRef,
{
type Item = (&'a K, &'a V);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
#[inline]
fn next(&mut self) -> Option<(&'a K, &'a V)> {
match self.addr {
Some(addr) => {
if self.len > 0 {
self.len -= 1;
let item = self.btree.item(addr).unwrap();
self.addr = self.btree.next_item_address(addr);
Some((item.key(), item.value()))
} else {
None
}
}
None => None,
}
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> FusedIterator for Iter<'a, K, V, C> where C: SimpleCollectionRef {}
impl<'a, K, V, C: Slab<Node<K, V>>> ExactSizeIterator for Iter<'a, K, V, C> where
C: SimpleCollectionRef
{
}
impl<'a, K, V, C: Slab<Node<K, V>>> DoubleEndedIterator for Iter<'a, K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
if self.len > 0 {
let addr = match self.end {
Some(addr) => self.btree.previous_item_address(addr).unwrap(),
None => self.btree.last_item_address().unwrap(),
};
self.len -= 1;
let item = self.btree.item(addr).unwrap();
self.end = Some(addr);
Some((item.key(), item.value()))
} else {
None
}
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> IntoIterator for &'a BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
{
type IntoIter = Iter<'a, K, V, C>;
type Item = (&'a K, &'a V);
#[inline]
fn into_iter(self) -> Iter<'a, K, V, C> {
self.iter()
}
}
pub struct IterMut<'a, K, V, C> {
/// The tree reference.
btree: &'a mut BTreeMap<K, V, C>,
/// Address of the next item.
addr: Option<Address>,
end: Option<Address>,
len: usize,
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> IterMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn new(btree: &'a mut BTreeMap<K, V, C>) -> Self {
let addr = btree.first_item_address();
let len = btree.len();
IterMut {
btree,
addr,
end: None,
len,
}
}
#[inline]
fn next_item(&mut self) -> Option<&'a mut Item<K, V>> {
match self.addr {
Some(addr) => {
if self.len > 0 {
self.len -= 1;
self.addr = self.btree.next_item_address(addr);
let item = self.btree.item_mut(addr).unwrap();
Some(unsafe { std::mem::transmute(item) }) // this is safe because only one mutable reference to the same item can be emitted.
} else {
None
}
}
None => None,
}
}
#[inline]
fn next_back_item(&mut self) -> Option<&'a mut Item<K, V>> {
if self.len > 0 {
let addr = match self.end {
Some(addr) => self.btree.previous_item_address(addr).unwrap(),
None => self.btree.last_item_address().unwrap(),
};
self.len -= 1;
let item = self.btree.item_mut(addr).unwrap();
self.end = Some(addr);
Some(unsafe { std::mem::transmute(item) }) // this is safe because only one mutable reference to the same item can be emitted.s
} else {
None
}
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> Iterator for IterMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = (&'a K, &'a mut V);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
#[inline]
fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
self.next_item().map(|item| {
let (key, value) = item.as_pair_mut();
(key as &'a K, value)
})
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> FusedIterator for IterMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> ExactSizeIterator for IterMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> DoubleEndedIterator for IterMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
self.next_back_item().map(|item| {
let (key, value) = item.as_pair_mut();
(key as &'a K, value)
})
}
}
/// Iterator that can mutate the tree in place.
pub struct EntriesMut<'a, K, V, C> {
/// The tree reference.
btree: &'a mut BTreeMap<K, V, C>,
/// Address of the next item, or last valid address.
addr: Address,
len: usize,
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> EntriesMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
/// Create a new iterator over all the items of the map.
#[inline]
fn new(btree: &'a mut BTreeMap<K, V, C>) -> EntriesMut<'a, K, V, C> {
let addr = btree.first_back_address();
let len = btree.len();
EntriesMut { btree, addr, len }
}
/// Get the next visited item without moving the iterator position.
#[inline]
pub fn peek(&'a self) -> Option<&'a Item<K, V>> {
self.btree.item(self.addr)
}
/// Get the next visited item without moving the iterator position.
#[inline]
pub fn peek_mut(&'a mut self) -> Option<&'a mut Item<K, V>> {
self.btree.item_mut(self.addr)
}
/// Get the next item and move the iterator to the next position.
#[inline]
pub fn next_item(&mut self) -> Option<&'a mut Item<K, V>> {
let after_addr = self.btree.next_item_or_back_address(self.addr);
match self.btree.item_mut(self.addr) {
Some(item) => unsafe {
self.len -= 1;
self.addr = after_addr.unwrap();
Some(&mut *(item as *mut _)) // this is safe because only one mutable reference to the same item can be emitted.
},
None => None,
}
}
/// Insert a new item in the map before the next item.
///
/// ## Correctness
///
/// It is safe to insert any key-value pair here, however this might break the well-formedness
/// of the underlying tree, which relies on several invariants.
/// To preserve these invariants,
/// the key must be *strictly greater* than the previous visited item's key,
/// and *strictly less* than the next visited item
/// (which you can retrive through `IterMut::peek` without moving the iterator).
/// If this rule is not respected, the data structure will become unusable
/// (invalidate the specification of every method of the API).
#[inline]
pub fn insert(&mut self, key: K, value: V) {
let addr = self.btree.insert_at(self.addr, Item::new(key, value));
self.btree.next_item_or_back_address(addr);
self.len += 1;
}
/// Remove the next item and return it.
#[inline]
pub fn remove(&mut self) -> Option<Item<K, V>> {
match self.btree.remove_at(self.addr) {
Some((item, addr)) => {
self.len -= 1;
self.addr = addr;
Some(item)
}
None => None,
}
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> Iterator for EntriesMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = (&'a K, &'a mut V);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
#[inline]
fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
match self.next_item() {
Some(item) => {
let (key, value) = item.as_pair_mut();
Some((key, value)) // coerce k from `&mut K` to `&K`
}
None => None,
}
}
}
/// An owning iterator over the entries of a `BTreeMap`.
///
/// This `struct` is created by the [`into_iter`] method on [`BTreeMap`]
/// (provided by the `IntoIterator` trait). See its documentation for more.
///
/// [`into_iter`]: IntoIterator::into_iter
pub struct IntoIter<K, V, C> {
/// The tree reference.
btree: BTreeMap<K, V, C>,
/// Address of the next item, or the last valid address.
addr: Option<Address>,
/// Address following the last item.
end: Option<Address>,
/// Number of remaining items.
len: usize,
}
impl<K, V, C: SlabMut<Node<K, V>>> IntoIter<K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
pub fn new(btree: BTreeMap<K, V, C>) -> Self {
let addr = btree.first_item_address();
let len = btree.len();
IntoIter {
btree,
addr,
end: None,
len,
}
}
}
impl<K, V, C: SlabMut<Node<K, V>>> FusedIterator for IntoIter<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<K, V, C: SlabMut<Node<K, V>>> ExactSizeIterator for IntoIter<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<K, V, C: SlabMut<Node<K, V>>> Iterator for IntoIter<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = (K, V);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
#[inline]
fn next(&mut self) -> Option<(K, V)> {
match self.addr {
Some(addr) => {
if self.len > 0 {
self.len -= 1;
let item = unsafe {
// this is safe because the item at `self.addr` exists and is never touched again.
std::ptr::read(self.btree.item(addr).unwrap())
};
if self.len > 0 {
self.addr = self.btree.next_back_address(addr); // an item address is always followed by a valid address.
while let Some(addr) = self.addr {
if addr.offset < self.btree.node(addr.id).item_count() {
break; // we have found an item address.
} else {
self.addr = self.btree.next_back_address(addr);
// we have gove through every item of the node, we can release it.
let node = self.btree.release_node(addr.id);
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
}
} else {
// cleanup.
if self.end.is_some() {
while self.addr != self.end {
let addr = self.addr.unwrap();
self.addr = self.btree.next_back_address(addr);
if addr.offset >= self.btree.node(addr.id).item_count() {
let node = self.btree.release_node(addr.id);
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
}
}
if let Some(addr) = self.addr {
let mut id = Some(addr.id);
while let Some(node_id) = id {
let node = self.btree.release_node(node_id);
id = node.parent();
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
}
}
Some(item.into_pair())
} else {
None
}
}
None => None,
}
}
}
impl<K, V, C: SlabMut<Node<K, V>>> DoubleEndedIterator for IntoIter<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
fn next_back(&mut self) -> Option<(K, V)> {
if self.len > 0 {
let addr = match self.end {
Some(mut addr) => {
addr = self.btree.previous_front_address(addr).unwrap();
while addr.offset.is_before() {
let id = addr.id;
addr = self.btree.previous_front_address(addr).unwrap();
// we have gove through every item of the node, we can release it.
let node = self.btree.release_node(id);
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
addr
}
None => self.btree.last_item_address().unwrap(),
};
self.len -= 1;
let item = unsafe {
// this is safe because the item at `self.end` exists and is never touched again.
std::ptr::read(self.btree.item(addr).unwrap())
};
self.end = Some(addr);
if self.len == 0 {
// cleanup.
while self.addr != self.end {
let addr = self.addr.unwrap();
self.addr = self.btree.next_back_address(addr);
if addr.offset >= self.btree.node(addr.id).item_count() {
let node = self.btree.release_node(addr.id);
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
}
if let Some(addr) = self.addr {
let mut id = Some(addr.id);
while let Some(node_id) = id {
let node = self.btree.release_node(node_id);
id = node.parent();
std::mem::forget(node); // do not call `drop` on the node since items have been moved.
}
}
}
Some(item.into_pair())
} else {
None
}
}
}
impl<K, V, C: SlabMut<Node<K, V>>> IntoIterator for BTreeMap<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type IntoIter = IntoIter<K, V, C>;
type Item = (K, V);
#[inline]
fn into_iter(self) -> IntoIter<K, V, C> {
IntoIter::new(self)
}
}
pub(crate) struct DrainFilterInner<'a, K, V, C> {
/// The tree reference.
btree: &'a mut BTreeMap<K, V, C>,
/// Address of the next item, or last valid address.
addr: Address,
len: usize,
}
impl<'a, K: 'a, V: 'a, C: SlabMut<Node<K, V>>> DrainFilterInner<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
pub fn new(btree: &'a mut BTreeMap<K, V, C>) -> Self {
let addr = btree.first_back_address();
let len = btree.len();
DrainFilterInner { btree, addr, len }
}
#[inline]
pub fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(self.len))
}
#[inline]
fn next_item<F>(&mut self, pred: &mut F) -> Option<Item<K, V>>
where
F: FnMut(&K, &mut V) -> bool,
{
loop {
match self.btree.item_mut(self.addr) {
Some(item) => {
let (key, value) = item.as_pair_mut();
self.len -= 1;
if (*pred)(key, value) {
let (item, next_addr) = self.btree.remove_at(self.addr).unwrap();
self.addr = next_addr;
return Some(item);
} else {
self.addr = self.btree.next_item_or_back_address(self.addr).unwrap();
}
}
None => return None,
}
}
}
#[inline]
pub fn next<F>(&mut self, pred: &mut F) -> Option<(K, V)>
where
F: FnMut(&K, &mut V) -> bool,
{
self.next_item(pred).map(Item::into_pair)
}
}
pub struct DrainFilter<'a, K, V, C: SlabMut<Node<K, V>>, F>
where
F: FnMut(&K, &mut V) -> bool,
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
pred: F,
inner: DrainFilterInner<'a, K, V, C>,
}
impl<'a, K: 'a, V: 'a, C: SlabMut<Node<K, V>>, F> DrainFilter<'a, K, V, C, F>
where
F: FnMut(&K, &mut V) -> bool,
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn new(btree: &'a mut BTreeMap<K, V, C>, pred: F) -> Self {
DrainFilter {
pred,
inner: DrainFilterInner::new(btree),
}
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>, F> FusedIterator for DrainFilter<'a, K, V, C, F>
where
F: FnMut(&K, &mut V) -> bool,
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>, F> Iterator for DrainFilter<'a, K, V, C, F>
where
F: FnMut(&K, &mut V) -> bool,
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = (K, V);
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<(K, V)> {
self.inner.next(&mut self.pred)
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>, F> Drop for DrainFilter<'a, K, V, C, F>
where
F: FnMut(&K, &mut V) -> bool,
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn drop(&mut self) {
loop {
if self.next().is_none() {
break;
}
}
}
}
pub struct Keys<'a, K, V, C> {
inner: Iter<'a, K, V, C>,
}
impl<'a, K, V, C: Slab<Node<K, V>>> FusedIterator for Keys<'a, K, V, C> where C: SimpleCollectionRef {}
impl<'a, K, V, C: Slab<Node<K, V>>> ExactSizeIterator for Keys<'a, K, V, C> where
C: SimpleCollectionRef
{
}
impl<'a, K, V, C: Slab<Node<K, V>>> Iterator for Keys<'a, K, V, C>
where
C: SimpleCollectionRef,
{
type Item = &'a K;
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<&'a K> {
self.inner.next().map(|(k, _)| k)
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> DoubleEndedIterator for Keys<'a, K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn next_back(&mut self) -> Option<&'a K> {
self.inner.next_back().map(|(k, _)| k)
}
}
impl<K, V, C: SlabMut<Node<K, V>>> FusedIterator for IntoKeys<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<K, V, C: SlabMut<Node<K, V>>> ExactSizeIterator for IntoKeys<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
pub struct IntoKeys<K, V, C> {
inner: IntoIter<K, V, C>,
}
impl<K, V, C: SlabMut<Node<K, V>>> Iterator for IntoKeys<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = K;
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<K> {
self.inner.next().map(|(k, _)| k)
}
}
impl<K, V, C: SlabMut<Node<K, V>>> DoubleEndedIterator for IntoKeys<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn next_back(&mut self) -> Option<K> {
self.inner.next_back().map(|(k, _)| k)
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> FusedIterator for Values<'a, K, V, C> where
C: SimpleCollectionRef
{
}
impl<'a, K, V, C: Slab<Node<K, V>>> ExactSizeIterator for Values<'a, K, V, C> where
C: SimpleCollectionRef
{
}
pub struct Values<'a, K, V, C> {
inner: Iter<'a, K, V, C>,
}
impl<'a, K, V, C: Slab<Node<K, V>>> Iterator for Values<'a, K, V, C>
where
C: SimpleCollectionRef,
{
type Item = &'a V;
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<&'a V> {
self.inner.next().map(|(_, v)| v)
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> DoubleEndedIterator for Values<'a, K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn next_back(&mut self) -> Option<&'a V> {
self.inner.next_back().map(|(_, v)| v)
}
}
pub struct ValuesMut<'a, K, V, C> {
inner: IterMut<'a, K, V, C>,
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> FusedIterator for ValuesMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> ExactSizeIterator for ValuesMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> Iterator for ValuesMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = &'a mut V;
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<&'a mut V> {
self.inner.next().map(|(_, v)| v)
}
}
pub struct IntoValues<K, V, C> {
inner: IntoIter<K, V, C>,
}
impl<K, V, C: SlabMut<Node<K, V>>> FusedIterator for IntoValues<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<K, V, C: SlabMut<Node<K, V>>> ExactSizeIterator for IntoValues<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<K, V, C: SlabMut<Node<K, V>>> Iterator for IntoValues<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = V;
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
#[inline]
fn next(&mut self) -> Option<V> {
self.inner.next().map(|(_, v)| v)
}
}
impl<K, V, C: SlabMut<Node<K, V>>> DoubleEndedIterator for IntoValues<K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn next_back(&mut self) -> Option<V> {
self.inner.next_back().map(|(_, v)| v)
}
}
fn is_valid_range<T, R>(range: &R) -> bool
where
T: Ord + ?Sized,
R: RangeBounds<T>,
{
match (range.start_bound(), range.end_bound()) {
(Bound::Included(start), Bound::Included(end)) => start <= end,
(Bound::Included(start), Bound::Excluded(end)) => start <= end,
(Bound::Included(_), Bound::Unbounded) => true,
(Bound::Excluded(start), Bound::Included(end)) => start <= end,
(Bound::Excluded(start), Bound::Excluded(end)) => start < end,
(Bound::Excluded(_), Bound::Unbounded) => true,
(Bound::Unbounded, _) => true,
}
}
pub struct Range<'a, K, V, C> {
/// The tree reference.
btree: &'a BTreeMap<K, V, C>,
/// Address of the next item or last back address.
addr: Address,
end: Address,
}
impl<'a, K, V, C: Slab<Node<K, V>>> Range<'a, K, V, C>
where
C: SimpleCollectionRef,
{
fn new<T, R>(btree: &'a BTreeMap<K, V, C>, range: R) -> Self
where
T: Ord + ?Sized,
R: RangeBounds<T>,
K: Borrow<T>,
{
if !is_valid_range(&range) {
panic!("Invalid range")
}
let addr = match range.start_bound() {
Bound::Included(start) => match btree.address_of(start) {
Ok(addr) => addr,
Err(addr) => addr,
},
Bound::Excluded(start) => match btree.address_of(start) {
Ok(addr) => btree.next_item_or_back_address(addr).unwrap(),
Err(addr) => addr,
},
Bound::Unbounded => btree.first_back_address(),
};
let end = match range.end_bound() {
Bound::Included(end) => match btree.address_of(end) {
Ok(addr) => btree.next_item_or_back_address(addr).unwrap(),
Err(addr) => addr,
},
Bound::Excluded(end) => match btree.address_of(end) {
Ok(addr) => addr,
Err(addr) => addr,
},
Bound::Unbounded => btree.first_back_address(),
};
Range { btree, addr, end }
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> Iterator for Range<'a, K, V, C>
where
C: SimpleCollectionRef,
{
type Item = (&'a K, &'a V);
#[inline]
fn next(&mut self) -> Option<(&'a K, &'a V)> {
if self.addr != self.end {
let item = self.btree.item(self.addr).unwrap();
self.addr = self.btree.next_item_or_back_address(self.addr).unwrap();
Some((item.key(), item.value()))
} else {
None
}
}
}
impl<'a, K, V, C: Slab<Node<K, V>>> FusedIterator for Range<'a, K, V, C> where C: SimpleCollectionRef
{}
impl<'a, K, V, C: Slab<Node<K, V>>> DoubleEndedIterator for Range<'a, K, V, C>
where
C: SimpleCollectionRef,
{
#[inline]
fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
if self.addr != self.end {
let addr = self.btree.previous_item_address(self.addr).unwrap();
let item = self.btree.item(addr).unwrap();
self.end = addr;
Some((item.key(), item.value()))
} else {
None
}
}
}
pub struct RangeMut<'a, K, V, C> {
/// The tree reference.
btree: &'a mut BTreeMap<K, V, C>,
/// Address of the next item or last back address.
addr: Address,
end: Address,
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> RangeMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
fn new<T, R>(btree: &'a mut BTreeMap<K, V, C>, range: R) -> Self
where
T: Ord + ?Sized,
R: RangeBounds<T>,
K: Borrow<T>,
{
if !is_valid_range(&range) {
panic!("Invalid range")
}
let addr = match range.start_bound() {
Bound::Included(start) => match btree.address_of(start) {
Ok(addr) => addr,
Err(addr) => addr,
},
Bound::Excluded(start) => match btree.address_of(start) {
Ok(addr) => btree.next_item_or_back_address(addr).unwrap(),
Err(addr) => addr,
},
Bound::Unbounded => btree.first_back_address(),
};
let end = match range.end_bound() {
Bound::Included(end) => match btree.address_of(end) {
Ok(addr) => btree.next_item_or_back_address(addr).unwrap(),
Err(addr) => addr,
},
Bound::Excluded(end) => match btree.address_of(end) {
Ok(addr) => addr,
Err(addr) => addr,
},
Bound::Unbounded => btree.first_back_address(),
};
RangeMut { btree, addr, end }
}
#[inline]
fn next_item(&mut self) -> Option<&'a mut Item<K, V>> {
if self.addr != self.end {
let addr = self.addr;
self.addr = self.btree.next_item_or_back_address(addr).unwrap();
let item = self.btree.item_mut(addr).unwrap();
Some(unsafe { std::mem::transmute(item) }) // this is safe because only one mutable reference to the same item can be emitted.
} else {
None
}
}
#[inline]
fn next_back_item(&mut self) -> Option<&'a mut Item<K, V>> {
if self.addr != self.end {
let addr = self.btree.previous_item_address(self.addr).unwrap();
let item = self.btree.item_mut(addr).unwrap();
self.end = addr;
Some(unsafe { std::mem::transmute(item) }) // this is safe because only one mutable reference to the same item can be emitted.s
} else {
None
}
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> Iterator for RangeMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
type Item = (&'a K, &'a mut V);
#[inline]
fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
self.next_item().map(|item| {
let (key, value) = item.as_pair_mut();
(key as &'a K, value)
})
}
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> FusedIterator for RangeMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
}
impl<'a, K, V, C: SlabMut<Node<K, V>>> DoubleEndedIterator for RangeMut<'a, K, V, C>
where
C: SimpleCollectionRef,
C: SimpleCollectionMut,
{
#[inline]
fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
self.next_back_item().map(|item| {
let (key, value) = item.as_pair_mut();
(key as &'a K, value)
})
}
}