indexmap_nostd/map.rs
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
//! An ordered map based on a B-Tree that keeps insertion order of elements.
use super::SlotIndex;
use alloc::collections::{btree_map, BTreeMap};
use alloc::vec::IntoIter as VecIntoIter;
use alloc::vec::Vec;
use core::borrow::Borrow;
use core::fmt;
use core::iter::FusedIterator;
use core::mem::replace;
use core::ops::{Index, IndexMut};
use core::slice::Iter as SliceIter;
use core::slice::IterMut as SliceIterMut;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct Slot<K, V> {
/// The key of the [`Slot`].
key: K,
/// The value of the [`Slot`].
value: V,
}
impl<K, V> Slot<K, V> {
/// Creates a new [`Slot`] from the given `key` and `value`.
pub fn new(key: K, value: V) -> Self {
Self { key, value }
}
/// Returns the [`Slot`] as a pair of references to its `key` and `value`.
pub fn as_pair(&self) -> (&K, &V) {
(&self.key, &self.value)
}
/// Returns the [`Slot`] as a pair of references to its `key` and `value`.
pub fn as_pair_mut(&mut self) -> (&K, &mut V) {
(&self.key, &mut self.value)
}
/// Converts the [`Slot`] into a pair of its `key` and `value`.
pub fn into_pair(self) -> (K, V) {
(self.key, self.value)
}
/// Returns a shared reference to the value of the [`Slot`].
pub fn value(&self) -> &V {
&self.value
}
/// Returns an exclusive reference to the value of the [`Slot`].
pub fn value_mut(&mut self) -> &mut V {
&mut self.value
}
}
/// A b-tree map where the iteration order of the key-value
/// pairs is independent of the ordering of the keys.
///
/// The interface is closely compatible with the [`indexmap` crate]
/// and a subset of the features that is relevant for the
/// [`wasmparser-nostd` crate].
///
/// # Differences to original `IndexMap`
///
/// Since the goal of this crate was to maintain a simple
/// `no_std` compatible fork of the [`indexmap` crate] there are some
/// downsides and differences.
///
/// - Some operations such as `IndexMap::insert` now require `K: Clone`.
/// - It is to be expected that this fork performs worse than the original
/// [`indexmap` crate] implementation.
/// - The implementation is based on `BTreeMap` internally instead of
/// `HashMap` which has the effect that methods no longer require `K: Hash`
/// but `K: Ord` instead.
///
/// [`indexmap` crate]: https://crates.io/crates/indexmap
/// [`wasmparser-nostd` crate]: https://crates.io/crates/wasmparser-nostd
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct IndexMap<K, V> {
/// A mapping from keys to slot indices.
key2slot: BTreeMap<K, SlotIndex>,
/// A vector holding all slots of key value pairs.
slots: Vec<Slot<K, V>>,
}
impl<K, V> Default for IndexMap<K, V> {
fn default() -> Self {
Self::new()
}
}
impl<K, V> IndexMap<K, V> {
/// Makes a new, empty [`IndexMap`].
///
/// Does not allocate anything on its own.
pub fn new() -> Self {
Self {
key2slot: BTreeMap::new(),
slots: Vec::new(),
}
}
/// Constructs a new, empty [`IndexMap`] with at least the specified capacity.
///
/// Does not allocate if `capacity` is zero.
pub fn with_capacity(capacity: usize) -> Self {
Self {
key2slot: BTreeMap::new(),
slots: Vec::with_capacity(capacity),
}
}
/// Reserve capacity for at least `additional` more key-value pairs.
pub fn reserve(&mut self, additional: usize) {
self.slots.reserve(additional);
}
/// Returns the number of elements in the map.
pub fn len(&self) -> usize {
self.slots.len()
}
/// Returns `true` if the map contains no elements.
pub fn is_empty(&self) -> bool {
self.len() != 0
}
/// 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.
pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool
where
K: Borrow<Q> + Ord,
Q: Ord,
{
self.key2slot.contains_key(key)
}
/// Inserts a key-value pair into the map.
///
/// If the map did not have this key present, `None` is returned.
///
/// If the map did have this key present, the value is updated, and the old
/// value is returned. The key is not updated, though; this matters for
/// types that can be `==` without being identical.
pub fn insert(&mut self, key: K, value: V) -> Option<V>
where
K: Ord + Clone,
{
self.insert_full(key, value)
.map(|(_index, old_value)| old_value)
}
/// Inserts a key-value pair into the map.
///
/// Returns the unique index to the key-value pair alongside the previous value.
///
/// If the map did not have this key present, `None` is returned.
///
/// If the map did have this key present, the value is updated, and the old
/// value is returned. The key is not updated, though; this matters for
/// types that can be `==` without being identical.
pub fn insert_full(&mut self, key: K, value: V) -> Option<(usize, V)>
where
K: Ord + Clone,
{
match self.key2slot.entry(key.clone()) {
btree_map::Entry::Vacant(entry) => {
let new_slot = self.slots.len();
entry.insert(SlotIndex(new_slot));
self.slots.push(Slot::new(key, value));
None
}
btree_map::Entry::Occupied(entry) => {
let index = entry.get().index();
let new_slot = Slot::new(key, value);
let old_slot = replace(&mut self.slots[index], new_slot);
Some((index, old_slot.value))
}
}
}
/// Gets the given key’s corresponding entry in the map for in-place manipulation.
pub fn entry(&mut self, key: K) -> Entry<K, V>
where
K: Ord + Clone,
{
match self.key2slot.entry(key) {
btree_map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry {
vacant: entry,
slots: &mut self.slots,
}),
btree_map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry {
occupied: entry,
slots: &mut self.slots,
}),
}
}
/// Returns a 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.
pub fn get<Q: ?Sized>(&self, key: &Q) -> Option<&V>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
self.key2slot
.get(key)
.map(|slot| &self.slots[slot.index()].value)
}
/// 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.
pub fn get_key_value<Q: ?Sized>(&self, key: &Q) -> Option<(&K, &V)>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
self.key2slot
.get_key_value(key)
.map(|(key, slot)| (key, &self.slots[slot.index()].value))
}
/// Returns the key-value pair corresponding to the supplied key
/// as well as the unique index of the returned key-value pair.
///
/// 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.
pub fn get_full<Q: ?Sized>(&self, key: &Q) -> Option<(usize, &K, &V)>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
self.key2slot.get_key_value(key).map(|(key, slot)| {
let index = slot.index();
let value = &self.slots[index].value;
(index, key, value)
})
}
/// Returns the unique index 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.
pub fn get_index_of<Q: ?Sized>(&self, key: &Q) -> Option<usize>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
self.key2slot.get(key).copied().map(SlotIndex::index)
}
/// Returns a shared reference to the key-value pair at the given index.
pub fn get_index(&self, index: usize) -> Option<(&K, &V)> {
self.slots.get(index).map(Slot::as_pair)
}
/// Returns an exclusive reference to the key-value pair at the given index.
pub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)> {
self.slots.get_mut(index).map(Slot::as_pair_mut)
}
/// Gets an iterator over the entries of the map, sorted by key.
pub fn iter(&self) -> Iter<K, V> {
Iter {
iter: self.slots.iter(),
}
}
/// Gets a mutable iterator over the entries of the map, sorted by key.
pub fn iter_mut(&mut self) -> IterMut<K, V> {
IterMut {
iter: self.slots.iter_mut(),
}
}
/// Gets an iterator over the values of the map, in order by key.
pub fn values(&self) -> Values<K, V> {
Values {
iter: self.slots.iter(),
}
}
/// Gets a mutable iterator over the values of the map, in order by key.
pub fn values_mut(&mut self) -> ValuesMut<K, V> {
ValuesMut {
iter: self.slots.iter_mut(),
}
}
/// Clears the map, removing all elements.
pub fn clear(&mut self) {
self.key2slot.clear();
self.slots.clear();
}
}
impl<'a, K, Q, V> Index<&'a Q> for IndexMap<K, V>
where
K: Borrow<Q> + Ord,
Q: Ord,
{
type Output = V;
fn index(&self, key: &'a Q) -> &Self::Output {
self.get(key).expect("no entry found for key")
}
}
impl<K, V> Index<usize> for IndexMap<K, V> {
type Output = V;
fn index(&self, index: usize) -> &Self::Output {
let (_key, value) = self
.get_index(index)
.expect("IndexMap: index out of bounds");
value
}
}
impl<K, V> IndexMut<usize> for IndexMap<K, V> {
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
let (_key, value) = self
.get_index_mut(index)
.expect("IndexMap: index out of bounds");
value
}
}
impl<'a, K, V> Extend<(&'a K, &'a V)> for IndexMap<K, V>
where
K: Ord + Copy,
V: Copy,
{
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, V> Extend<(K, V)> for IndexMap<K, V>
where
K: Ord + Clone,
{
fn extend<T>(&mut self, iter: T)
where
T: IntoIterator<Item = (K, V)>,
{
iter.into_iter().for_each(move |(k, v)| {
self.insert(k, v);
});
}
}
impl<K, V> FromIterator<(K, V)> for IndexMap<K, V>
where
K: Ord + Clone,
{
fn from_iter<T>(iter: T) -> Self
where
T: IntoIterator<Item = (K, V)>,
{
let mut map = IndexMap::new();
map.extend(iter);
map
}
}
impl<K, V, const N: usize> From<[(K, V); N]> for IndexMap<K, V>
where
K: Ord + Clone,
{
fn from(items: [(K, V); N]) -> Self {
items.into_iter().collect()
}
}
impl<'a, K, V> IntoIterator for &'a IndexMap<K, V> {
type Item = (&'a K, &'a V);
type IntoIter = Iter<'a, K, V>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<'a, K, V> IntoIterator for &'a mut IndexMap<K, V> {
type Item = (&'a K, &'a mut V);
type IntoIter = IterMut<'a, K, V>;
fn into_iter(self) -> Self::IntoIter {
self.iter_mut()
}
}
impl<K, V> IntoIterator for IndexMap<K, V> {
type Item = (K, V);
type IntoIter = IntoIter<K, V>;
fn into_iter(self) -> Self::IntoIter {
IntoIter {
iter: self.slots.into_iter(),
}
}
}
/// An iterator over the entries of an [`IndexMap`].
///
/// This `struct` is created by the [`iter`] method on [`IndexMap`]. See its
/// documentation for more.
///
/// [`iter`]: IndexMap::iter
#[derive(Debug, Clone)]
pub struct Iter<'a, K, V> {
iter: SliceIter<'a, Slot<K, V>>,
}
impl<'a, K, V> Iterator for Iter<'a, K, V> {
type Item = (&'a K, &'a V);
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
fn count(self) -> usize {
self.iter.count()
}
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(Slot::as_pair)
}
}
impl<'a, K, V> DoubleEndedIterator for Iter<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back().map(Slot::as_pair)
}
}
impl<'a, K, V> ExactSizeIterator for Iter<'a, K, V> {
fn len(&self) -> usize {
self.iter.len()
}
}
impl<'a, K, V> FusedIterator for Iter<'a, K, V> {}
/// A mutable iterator over the entries of an [`IndexMap`].
///
/// This `struct` is created by the [`iter_mut`] method on [`IndexMap`]. See its
/// documentation for more.
///
/// [`iter_mut`]: IndexMap::iter_mut
#[derive(Debug)]
pub struct IterMut<'a, K, V> {
iter: SliceIterMut<'a, Slot<K, V>>,
}
impl<'a, K, V> Iterator for IterMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
fn count(self) -> usize {
self.iter.count()
}
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(Slot::as_pair_mut)
}
}
impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back().map(Slot::as_pair_mut)
}
}
impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V> {
fn len(&self) -> usize {
self.iter.len()
}
}
impl<'a, K, V> FusedIterator for IterMut<'a, K, V> {}
/// An owning iterator over the entries of a [`IndexMap`].
///
/// This `struct` is created by the [`into_iter`] method on [`IndexMap`]
/// (provided by the [`IntoIterator`] trait). See its documentation for more.
///
/// [`into_iter`]: IntoIterator::into_iter
/// [`IntoIterator`]: core::iter::IntoIterator
#[derive(Debug)]
pub struct IntoIter<K, V> {
iter: VecIntoIter<Slot<K, V>>,
}
impl<K, V> Iterator for IntoIter<K, V> {
type Item = (K, V);
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
fn count(self) -> usize {
self.iter.count()
}
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(Slot::into_pair)
}
}
impl<K, V> DoubleEndedIterator for IntoIter<K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back().map(Slot::into_pair)
}
}
impl<K, V> ExactSizeIterator for IntoIter<K, V> {
fn len(&self) -> usize {
self.iter.len()
}
}
impl<K, V> FusedIterator for IntoIter<K, V> {}
/// An iterator over the values of an [`IndexMap`].
///
/// This `struct` is created by the [`values`] method on [`IndexMap`]. See its
/// documentation for more.
///
/// [`values`]: IndexMap::values
#[derive(Debug, Clone)]
pub struct Values<'a, K, V> {
iter: SliceIter<'a, Slot<K, V>>,
}
impl<'a, K, V> Iterator for Values<'a, K, V> {
type Item = &'a V;
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
fn count(self) -> usize {
self.iter.count()
}
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(Slot::value)
}
}
impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back().map(Slot::value)
}
}
impl<'a, K, V> ExactSizeIterator for Values<'a, K, V> {
fn len(&self) -> usize {
self.iter.len()
}
}
impl<'a, K, V> FusedIterator for Values<'a, K, V> {}
/// An iterator over the values of an [`IndexMap`].
///
/// This `struct` is created by the [`values`] method on [`IndexMap`]. See its
/// documentation for more.
///
/// [`values`]: IndexMap::values
#[derive(Debug)]
pub struct ValuesMut<'a, K, V> {
iter: SliceIterMut<'a, Slot<K, V>>,
}
impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
type Item = &'a mut V;
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
fn count(self) -> usize {
self.iter.count()
}
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(Slot::value_mut)
}
}
impl<'a, K, V> DoubleEndedIterator for ValuesMut<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back().map(Slot::value_mut)
}
}
impl<'a, K, V> ExactSizeIterator for ValuesMut<'a, K, V> {
fn len(&self) -> usize {
self.iter.len()
}
}
impl<'a, K, V> FusedIterator for ValuesMut<'a, K, V> {}
/// A view into a single entry in a map, which may either be vacant or occupied.
///
/// This `enum` is constructed from the [`entry`] method on [`IndexMap`].
///
/// [`entry`]: IndexMap::entry
pub enum Entry<'a, K, V> {
/// A vacant entry.
Vacant(VacantEntry<'a, K, V>),
/// An occupied entry.
Occupied(OccupiedEntry<'a, K, V>),
}
impl<'a, K: Ord, V> Entry<'a, K, V> {
/// Ensures a value is in the entry by inserting the default if empty,
/// and returns a mutable reference to the value in the entry.
pub fn or_insert(self, default: V) -> &'a mut V
where
K: Clone,
{
match self {
Self::Occupied(entry) => entry.into_mut(),
Self::Vacant(entry) => entry.insert(default),
}
}
/// Ensures a value is in the entry by inserting the result
/// of the default function if empty,
/// and returns a mutable reference to the value in the entry.
pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V
where
K: Clone,
{
match self {
Self::Occupied(entry) => entry.into_mut(),
Self::Vacant(entry) => entry.insert(default()),
}
}
/// Ensures a value is in the entry by inserting,
/// if empty, the result of the default function.
///
/// This method allows for generating key-derived values for
/// insertion by providing the default function a reference
/// to the key that was moved during the `.entry(key)` method call.
///
/// The reference to the moved key is provided
/// so that cloning or copying the key is
/// unnecessary, unlike with `.or_insert_with(|| ... )`.
pub fn or_insert_with_key<F: FnOnce(&K) -> V>(self, default: F) -> &'a mut V
where
K: Clone,
{
match self {
Self::Occupied(entry) => entry.into_mut(),
Self::Vacant(entry) => {
let value = default(entry.key());
entry.insert(value)
}
}
}
/// Returns a reference to this entry’s key.
pub fn key(&self) -> &K {
match *self {
Self::Occupied(ref entry) => entry.key(),
Self::Vacant(ref entry) => entry.key(),
}
}
/// Provides in-place mutable access to an occupied entry
/// before any potential inserts into the map.
pub fn and_modify<F>(self, f: F) -> Self
where
F: FnOnce(&mut V),
{
match self {
Self::Occupied(mut entry) => {
f(entry.get_mut());
Self::Occupied(entry)
}
Self::Vacant(entry) => Self::Vacant(entry),
}
}
}
impl<'a, K, V> Entry<'a, K, V>
where
K: Ord + Clone,
V: Default,
{
/// Ensures a value is in the entry by inserting the default value if empty,
/// and returns a mutable reference to the value in the entry.
pub fn or_default(self) -> &'a mut V {
match self {
Self::Occupied(entry) => entry.into_mut(),
Self::Vacant(entry) => entry.insert(Default::default()),
}
}
}
impl<'a, K, V> fmt::Debug for Entry<'a, K, V>
where
K: fmt::Debug + Ord,
V: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Entry::Vacant(entry) => entry.fmt(f),
Entry::Occupied(entry) => entry.fmt(f),
}
}
}
/// A view into a vacant entry in an [`IndexMap`]. It is part of the [`Entry`] `enum`.
pub struct VacantEntry<'a, K, V> {
/// The underlying vacant entry.
vacant: btree_map::VacantEntry<'a, K, SlotIndex>,
/// The vector that stores all slots.
slots: &'a mut Vec<Slot<K, V>>,
}
impl<'a, K, V> VacantEntry<'a, K, V>
where
K: Ord,
{
/// Gets a reference to the key that would be used when inserting a value through the VacantEntry.
pub fn key(&self) -> &K {
self.vacant.key()
}
/// Take ownership of the key.
pub fn into_key(self) -> K {
self.vacant.into_key()
}
/// Sets the value of the entry with the `VacantEntry`’s key,
/// and returns a mutable reference to it.
pub fn insert(self, value: V) -> &'a mut V
where
K: Clone,
{
let index = self.slots.len();
let key = self.vacant.key().clone();
self.vacant.insert(SlotIndex(index));
self.slots.push(Slot::new(key, value));
&mut self.slots[index].value
}
}
impl<'a, K, V> fmt::Debug for VacantEntry<'a, K, V>
where
K: fmt::Debug + Ord,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("VacantEntry")
.field("key", self.key())
.finish()
}
}
/// A view into an occupied entry in a [`IndexMap`]. It is part of the [`Entry`] `enum`.
pub struct OccupiedEntry<'a, K, V> {
/// The underlying occupied entry.
occupied: btree_map::OccupiedEntry<'a, K, SlotIndex>,
/// The vector that stores all slots.
slots: &'a mut Vec<Slot<K, V>>,
}
impl<'a, K, V> OccupiedEntry<'a, K, V>
where
K: Ord,
{
/// Gets a reference to the key in the entry.
pub fn key(&self) -> &K {
self.occupied.key()
}
/// Gets a reference to the value in the entry.
pub fn get(&self) -> &V {
let index = self.occupied.get().index();
&self.slots[index].value
}
/// Gets a mutable reference to the value in the entry.
///
/// If you need a reference to the `OccupiedEntry` that may outlive the
/// destruction of the `Entry` value, see [`into_mut`].
///
/// [`into_mut`]: OccupiedEntry::into_mut
pub fn get_mut(&mut self) -> &mut V {
let index = self.occupied.get().index();
&mut self.slots[index].value
}
/// Converts the entry into a mutable reference to its value.
///
/// If you need multiple references to the `OccupiedEntry`, see [`get_mut`].
///
/// [`get_mut`]: OccupiedEntry::get_mut
pub fn into_mut(self) -> &'a mut V {
let index = self.occupied.get().index();
&mut self.slots[index].value
}
/// Sets the value of the entry with the `OccupiedEntry`’s key,
/// and returns the entry’s old value.
pub fn insert(&mut self, value: V) -> V
where
K: Clone,
{
let index = self.occupied.get().index();
let key = self.key().clone();
let new_slot = Slot::new(key, value);
let old_slot = replace(&mut self.slots[index], new_slot);
old_slot.value
}
}
impl<'a, K, V> fmt::Debug for OccupiedEntry<'a, K, V>
where
K: fmt::Debug + Ord,
V: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("OccupiedEntry")
.field("key", self.key())
.field("value", self.get())
.finish()
}
}