]> git.lizzy.rs Git - rust.git/blob - library/std/src/collections/hash/map.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / library / std / src / collections / hash / map.rs
1 #[cfg(test)]
2 mod tests;
3
4 use self::Entry::*;
5
6 use hashbrown::hash_map as base;
7
8 use crate::borrow::Borrow;
9 use crate::cell::Cell;
10 use crate::collections::TryReserveError;
11 use crate::collections::TryReserveErrorKind;
12 use crate::fmt::{self, Debug};
13 #[allow(deprecated)]
14 use crate::hash::{BuildHasher, Hash, Hasher, SipHasher13};
15 use crate::iter::{FromIterator, FusedIterator};
16 use crate::ops::Index;
17 use crate::sys;
18
19 /// A [hash map] implemented with quadratic probing and SIMD lookup.
20 ///
21 /// By default, `HashMap` uses a hashing algorithm selected to provide
22 /// resistance against HashDoS attacks. The algorithm is randomly seeded, and a
23 /// reasonable best-effort is made to generate this seed from a high quality,
24 /// secure source of randomness provided by the host without blocking the
25 /// program. Because of this, the randomness of the seed depends on the output
26 /// quality of the system's random number generator when the seed is created.
27 /// In particular, seeds generated when the system's entropy pool is abnormally
28 /// low such as during system boot may be of a lower quality.
29 ///
30 /// The default hashing algorithm is currently SipHash 1-3, though this is
31 /// subject to change at any point in the future. While its performance is very
32 /// competitive for medium sized keys, other hashing algorithms will outperform
33 /// it for small keys such as integers as well as large keys such as long
34 /// strings, though those algorithms will typically *not* protect against
35 /// attacks such as HashDoS.
36 ///
37 /// The hashing algorithm can be replaced on a per-`HashMap` basis using the
38 /// [`default`], [`with_hasher`], and [`with_capacity_and_hasher`] methods.
39 /// There are many alternative [hashing algorithms available on crates.io].
40 ///
41 /// It is required that the keys implement the [`Eq`] and [`Hash`] traits, although
42 /// this can frequently be achieved by using `#[derive(PartialEq, Eq, Hash)]`.
43 /// If you implement these yourself, it is important that the following
44 /// property holds:
45 ///
46 /// ```text
47 /// k1 == k2 -> hash(k1) == hash(k2)
48 /// ```
49 ///
50 /// In other words, if two keys are equal, their hashes must be equal.
51 ///
52 /// It is a logic error for a key to be modified in such a way that the key's
53 /// hash, as determined by the [`Hash`] trait, or its equality, as determined by
54 /// the [`Eq`] trait, changes while it is in the map. This is normally only
55 /// possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
56 /// The behavior resulting from such a logic error is not specified, but will
57 /// not result in undefined behavior. This could include panics, incorrect results,
58 /// aborts, memory leaks, and non-termination.
59 ///
60 /// The hash table implementation is a Rust port of Google's [SwissTable].
61 /// The original C++ version of SwissTable can be found [here], and this
62 /// [CppCon talk] gives an overview of how the algorithm works.
63 ///
64 /// [hash map]: crate::collections#use-a-hashmap-when
65 /// [hashing algorithms available on crates.io]: https://crates.io/keywords/hasher
66 /// [SwissTable]: https://abseil.io/blog/20180927-swisstables
67 /// [here]: https://github.com/abseil/abseil-cpp/blob/master/absl/container/internal/raw_hash_set.h
68 /// [CppCon talk]: https://www.youtube.com/watch?v=ncHmEUmJZf4
69 ///
70 /// # Examples
71 ///
72 /// ```
73 /// use std::collections::HashMap;
74 ///
75 /// // Type inference lets us omit an explicit type signature (which
76 /// // would be `HashMap<String, String>` in this example).
77 /// let mut book_reviews = HashMap::new();
78 ///
79 /// // Review some books.
80 /// book_reviews.insert(
81 ///     "Adventures of Huckleberry Finn".to_string(),
82 ///     "My favorite book.".to_string(),
83 /// );
84 /// book_reviews.insert(
85 ///     "Grimms' Fairy Tales".to_string(),
86 ///     "Masterpiece.".to_string(),
87 /// );
88 /// book_reviews.insert(
89 ///     "Pride and Prejudice".to_string(),
90 ///     "Very enjoyable.".to_string(),
91 /// );
92 /// book_reviews.insert(
93 ///     "The Adventures of Sherlock Holmes".to_string(),
94 ///     "Eye lyked it alot.".to_string(),
95 /// );
96 ///
97 /// // Check for a specific one.
98 /// // When collections store owned values (String), they can still be
99 /// // queried using references (&str).
100 /// if !book_reviews.contains_key("Les Misérables") {
101 ///     println!("We've got {} reviews, but Les Misérables ain't one.",
102 ///              book_reviews.len());
103 /// }
104 ///
105 /// // oops, this review has a lot of spelling mistakes, let's delete it.
106 /// book_reviews.remove("The Adventures of Sherlock Holmes");
107 ///
108 /// // Look up the values associated with some keys.
109 /// let to_find = ["Pride and Prejudice", "Alice's Adventure in Wonderland"];
110 /// for &book in &to_find {
111 ///     match book_reviews.get(book) {
112 ///         Some(review) => println!("{}: {}", book, review),
113 ///         None => println!("{} is unreviewed.", book)
114 ///     }
115 /// }
116 ///
117 /// // Look up the value for a key (will panic if the key is not found).
118 /// println!("Review for Jane: {}", book_reviews["Pride and Prejudice"]);
119 ///
120 /// // Iterate over everything.
121 /// for (book, review) in &book_reviews {
122 ///     println!("{}: \"{}\"", book, review);
123 /// }
124 /// ```
125 ///
126 /// A `HashMap` with a known list of items can be initialized from an array:
127 ///
128 /// ```
129 /// use std::collections::HashMap;
130 ///
131 /// let solar_distance = HashMap::from([
132 ///     ("Mercury", 0.4),
133 ///     ("Venus", 0.7),
134 ///     ("Earth", 1.0),
135 ///     ("Mars", 1.5),
136 /// ]);
137 /// ```
138 ///
139 /// `HashMap` implements an [`Entry API`](#method.entry), which allows
140 /// for complex methods of getting, setting, updating and removing keys and
141 /// their values:
142 ///
143 /// ```
144 /// use std::collections::HashMap;
145 ///
146 /// // type inference lets us omit an explicit type signature (which
147 /// // would be `HashMap<&str, u8>` in this example).
148 /// let mut player_stats = HashMap::new();
149 ///
150 /// fn random_stat_buff() -> u8 {
151 ///     // could actually return some random value here - let's just return
152 ///     // some fixed value for now
153 ///     42
154 /// }
155 ///
156 /// // insert a key only if it doesn't already exist
157 /// player_stats.entry("health").or_insert(100);
158 ///
159 /// // insert a key using a function that provides a new value only if it
160 /// // doesn't already exist
161 /// player_stats.entry("defence").or_insert_with(random_stat_buff);
162 ///
163 /// // update a key, guarding against the key possibly not being set
164 /// let stat = player_stats.entry("attack").or_insert(100);
165 /// *stat += random_stat_buff();
166 /// ```
167 ///
168 /// The easiest way to use `HashMap` with a custom key type is to derive [`Eq`] and [`Hash`].
169 /// We must also derive [`PartialEq`].
170 ///
171 /// [`RefCell`]: crate::cell::RefCell
172 /// [`Cell`]: crate::cell::Cell
173 /// [`default`]: Default::default
174 /// [`with_hasher`]: Self::with_hasher
175 /// [`with_capacity_and_hasher`]: Self::with_capacity_and_hasher
176 ///
177 /// ```
178 /// use std::collections::HashMap;
179 ///
180 /// #[derive(Hash, Eq, PartialEq, Debug)]
181 /// struct Viking {
182 ///     name: String,
183 ///     country: String,
184 /// }
185 ///
186 /// impl Viking {
187 ///     /// Creates a new Viking.
188 ///     fn new(name: &str, country: &str) -> Viking {
189 ///         Viking { name: name.to_string(), country: country.to_string() }
190 ///     }
191 /// }
192 ///
193 /// // Use a HashMap to store the vikings' health points.
194 /// let vikings = HashMap::from([
195 ///     (Viking::new("Einar", "Norway"), 25),
196 ///     (Viking::new("Olaf", "Denmark"), 24),
197 ///     (Viking::new("Harald", "Iceland"), 12),
198 /// ]);
199 ///
200 /// // Use derived implementation to print the status of the vikings.
201 /// for (viking, health) in &vikings {
202 ///     println!("{:?} has {} hp", viking, health);
203 /// }
204 /// ```
205
206 #[cfg_attr(not(test), rustc_diagnostic_item = "HashMap")]
207 #[stable(feature = "rust1", since = "1.0.0")]
208 #[rustc_insignificant_dtor]
209 pub struct HashMap<K, V, S = RandomState> {
210     base: base::HashMap<K, V, S>,
211 }
212
213 impl<K, V> HashMap<K, V, RandomState> {
214     /// Creates an empty `HashMap`.
215     ///
216     /// The hash map is initially created with a capacity of 0, so it will not allocate until it
217     /// is first inserted into.
218     ///
219     /// # Examples
220     ///
221     /// ```
222     /// use std::collections::HashMap;
223     /// let mut map: HashMap<&str, i32> = HashMap::new();
224     /// ```
225     #[inline]
226     #[must_use]
227     #[stable(feature = "rust1", since = "1.0.0")]
228     pub fn new() -> HashMap<K, V, RandomState> {
229         Default::default()
230     }
231
232     /// Creates an empty `HashMap` with the specified capacity.
233     ///
234     /// The hash map will be able to hold at least `capacity` elements without
235     /// reallocating. If `capacity` is 0, the hash map will not allocate.
236     ///
237     /// # Examples
238     ///
239     /// ```
240     /// use std::collections::HashMap;
241     /// let mut map: HashMap<&str, i32> = HashMap::with_capacity(10);
242     /// ```
243     #[inline]
244     #[must_use]
245     #[stable(feature = "rust1", since = "1.0.0")]
246     pub fn with_capacity(capacity: usize) -> HashMap<K, V, RandomState> {
247         HashMap::with_capacity_and_hasher(capacity, Default::default())
248     }
249 }
250
251 impl<K, V, S> HashMap<K, V, S> {
252     /// Creates an empty `HashMap` which will use the given hash builder to hash
253     /// keys.
254     ///
255     /// The created map has the default initial capacity.
256     ///
257     /// Warning: `hash_builder` is normally randomly generated, and
258     /// is designed to allow HashMaps to be resistant to attacks that
259     /// cause many collisions and very poor performance. Setting it
260     /// manually using this function can expose a DoS attack vector.
261     ///
262     /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
263     /// the HashMap to be useful, see its documentation for details.
264     ///
265     /// # Examples
266     ///
267     /// ```
268     /// use std::collections::HashMap;
269     /// use std::collections::hash_map::RandomState;
270     ///
271     /// let s = RandomState::new();
272     /// let mut map = HashMap::with_hasher(s);
273     /// map.insert(1, 2);
274     /// ```
275     #[inline]
276     #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
277     pub fn with_hasher(hash_builder: S) -> HashMap<K, V, S> {
278         HashMap { base: base::HashMap::with_hasher(hash_builder) }
279     }
280
281     /// Creates an empty `HashMap` with the specified capacity, using `hash_builder`
282     /// to hash the keys.
283     ///
284     /// The hash map will be able to hold at least `capacity` elements without
285     /// reallocating. If `capacity` is 0, the hash map will not allocate.
286     ///
287     /// Warning: `hash_builder` is normally randomly generated, and
288     /// is designed to allow HashMaps to be resistant to attacks that
289     /// cause many collisions and very poor performance. Setting it
290     /// manually using this function can expose a DoS attack vector.
291     ///
292     /// The `hash_builder` passed should implement the [`BuildHasher`] trait for
293     /// the HashMap to be useful, see its documentation for details.
294     ///
295     /// # Examples
296     ///
297     /// ```
298     /// use std::collections::HashMap;
299     /// use std::collections::hash_map::RandomState;
300     ///
301     /// let s = RandomState::new();
302     /// let mut map = HashMap::with_capacity_and_hasher(10, s);
303     /// map.insert(1, 2);
304     /// ```
305     #[inline]
306     #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
307     pub fn with_capacity_and_hasher(capacity: usize, hash_builder: S) -> HashMap<K, V, S> {
308         HashMap { base: base::HashMap::with_capacity_and_hasher(capacity, hash_builder) }
309     }
310
311     /// Returns the number of elements the map can hold without reallocating.
312     ///
313     /// This number is a lower bound; the `HashMap<K, V>` might be able to hold
314     /// more, but is guaranteed to be able to hold at least this many.
315     ///
316     /// # Examples
317     ///
318     /// ```
319     /// use std::collections::HashMap;
320     /// let map: HashMap<i32, i32> = HashMap::with_capacity(100);
321     /// assert!(map.capacity() >= 100);
322     /// ```
323     #[inline]
324     #[stable(feature = "rust1", since = "1.0.0")]
325     pub fn capacity(&self) -> usize {
326         self.base.capacity()
327     }
328
329     /// An iterator visiting all keys in arbitrary order.
330     /// The iterator element type is `&'a K`.
331     ///
332     /// # Examples
333     ///
334     /// ```
335     /// use std::collections::HashMap;
336     ///
337     /// let mut map = HashMap::new();
338     /// map.insert("a", 1);
339     /// map.insert("b", 2);
340     /// map.insert("c", 3);
341     ///
342     /// for key in map.keys() {
343     ///     println!("{}", key);
344     /// }
345     /// ```
346     #[stable(feature = "rust1", since = "1.0.0")]
347     pub fn keys(&self) -> Keys<'_, K, V> {
348         Keys { inner: self.iter() }
349     }
350
351     /// An iterator visiting all values in arbitrary order.
352     /// The iterator element type is `&'a V`.
353     ///
354     /// # Examples
355     ///
356     /// ```
357     /// use std::collections::HashMap;
358     ///
359     /// let mut map = HashMap::new();
360     /// map.insert("a", 1);
361     /// map.insert("b", 2);
362     /// map.insert("c", 3);
363     ///
364     /// for val in map.values() {
365     ///     println!("{}", val);
366     /// }
367     /// ```
368     #[stable(feature = "rust1", since = "1.0.0")]
369     pub fn values(&self) -> Values<'_, K, V> {
370         Values { inner: self.iter() }
371     }
372
373     /// An iterator visiting all values mutably in arbitrary order.
374     /// The iterator element type is `&'a mut V`.
375     ///
376     /// # Examples
377     ///
378     /// ```
379     /// use std::collections::HashMap;
380     ///
381     /// let mut map = HashMap::new();
382     ///
383     /// map.insert("a", 1);
384     /// map.insert("b", 2);
385     /// map.insert("c", 3);
386     ///
387     /// for val in map.values_mut() {
388     ///     *val = *val + 10;
389     /// }
390     ///
391     /// for val in map.values() {
392     ///     println!("{}", val);
393     /// }
394     /// ```
395     #[stable(feature = "map_values_mut", since = "1.10.0")]
396     pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
397         ValuesMut { inner: self.iter_mut() }
398     }
399
400     /// An iterator visiting all key-value pairs in arbitrary order.
401     /// The iterator element type is `(&'a K, &'a V)`.
402     ///
403     /// # Examples
404     ///
405     /// ```
406     /// use std::collections::HashMap;
407     ///
408     /// let mut map = HashMap::new();
409     /// map.insert("a", 1);
410     /// map.insert("b", 2);
411     /// map.insert("c", 3);
412     ///
413     /// for (key, val) in map.iter() {
414     ///     println!("key: {} val: {}", key, val);
415     /// }
416     /// ```
417     #[stable(feature = "rust1", since = "1.0.0")]
418     pub fn iter(&self) -> Iter<'_, K, V> {
419         Iter { base: self.base.iter() }
420     }
421
422     /// An iterator visiting all key-value pairs in arbitrary order,
423     /// with mutable references to the values.
424     /// The iterator element type is `(&'a K, &'a mut V)`.
425     ///
426     /// # Examples
427     ///
428     /// ```
429     /// use std::collections::HashMap;
430     ///
431     /// let mut map = HashMap::new();
432     /// map.insert("a", 1);
433     /// map.insert("b", 2);
434     /// map.insert("c", 3);
435     ///
436     /// // Update all values
437     /// for (_, val) in map.iter_mut() {
438     ///     *val *= 2;
439     /// }
440     ///
441     /// for (key, val) in &map {
442     ///     println!("key: {} val: {}", key, val);
443     /// }
444     /// ```
445     #[stable(feature = "rust1", since = "1.0.0")]
446     pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
447         IterMut { base: self.base.iter_mut() }
448     }
449
450     /// Returns the number of elements in the map.
451     ///
452     /// # Examples
453     ///
454     /// ```
455     /// use std::collections::HashMap;
456     ///
457     /// let mut a = HashMap::new();
458     /// assert_eq!(a.len(), 0);
459     /// a.insert(1, "a");
460     /// assert_eq!(a.len(), 1);
461     /// ```
462     #[stable(feature = "rust1", since = "1.0.0")]
463     pub fn len(&self) -> usize {
464         self.base.len()
465     }
466
467     /// Returns `true` if the map contains no elements.
468     ///
469     /// # Examples
470     ///
471     /// ```
472     /// use std::collections::HashMap;
473     ///
474     /// let mut a = HashMap::new();
475     /// assert!(a.is_empty());
476     /// a.insert(1, "a");
477     /// assert!(!a.is_empty());
478     /// ```
479     #[inline]
480     #[stable(feature = "rust1", since = "1.0.0")]
481     pub fn is_empty(&self) -> bool {
482         self.base.is_empty()
483     }
484
485     /// Clears the map, returning all key-value pairs as an iterator. Keeps the
486     /// allocated memory for reuse.
487     ///
488     /// # Examples
489     ///
490     /// ```
491     /// use std::collections::HashMap;
492     ///
493     /// let mut a = HashMap::new();
494     /// a.insert(1, "a");
495     /// a.insert(2, "b");
496     ///
497     /// for (k, v) in a.drain().take(1) {
498     ///     assert!(k == 1 || k == 2);
499     ///     assert!(v == "a" || v == "b");
500     /// }
501     ///
502     /// assert!(a.is_empty());
503     /// ```
504     #[inline]
505     #[stable(feature = "drain", since = "1.6.0")]
506     pub fn drain(&mut self) -> Drain<'_, K, V> {
507         Drain { base: self.base.drain() }
508     }
509
510     /// Creates an iterator which uses a closure to determine if an element should be removed.
511     ///
512     /// If the closure returns true, the element is removed from the map and yielded.
513     /// If the closure returns false, or panics, the element remains in the map and will not be
514     /// yielded.
515     ///
516     /// Note that `drain_filter` lets you mutate every value in the filter closure, regardless of
517     /// whether you choose to keep or remove it.
518     ///
519     /// If the iterator is only partially consumed or not consumed at all, each of the remaining
520     /// elements will still be subjected to the closure and removed and dropped if it returns true.
521     ///
522     /// It is unspecified how many more elements will be subjected to the closure
523     /// if a panic occurs in the closure, or a panic occurs while dropping an element,
524     /// or if the `DrainFilter` value is leaked.
525     ///
526     /// # Examples
527     ///
528     /// Splitting a map into even and odd keys, reusing the original map:
529     ///
530     /// ```
531     /// #![feature(hash_drain_filter)]
532     /// use std::collections::HashMap;
533     ///
534     /// let mut map: HashMap<i32, i32> = (0..8).map(|x| (x, x)).collect();
535     /// let drained: HashMap<i32, i32> = map.drain_filter(|k, _v| k % 2 == 0).collect();
536     ///
537     /// let mut evens = drained.keys().copied().collect::<Vec<_>>();
538     /// let mut odds = map.keys().copied().collect::<Vec<_>>();
539     /// evens.sort();
540     /// odds.sort();
541     ///
542     /// assert_eq!(evens, vec![0, 2, 4, 6]);
543     /// assert_eq!(odds, vec![1, 3, 5, 7]);
544     /// ```
545     #[inline]
546     #[unstable(feature = "hash_drain_filter", issue = "59618")]
547     pub fn drain_filter<F>(&mut self, pred: F) -> DrainFilter<'_, K, V, F>
548     where
549         F: FnMut(&K, &mut V) -> bool,
550     {
551         DrainFilter { base: self.base.drain_filter(pred) }
552     }
553
554     /// Clears the map, removing all key-value pairs. Keeps the allocated memory
555     /// for reuse.
556     ///
557     /// # Examples
558     ///
559     /// ```
560     /// use std::collections::HashMap;
561     ///
562     /// let mut a = HashMap::new();
563     /// a.insert(1, "a");
564     /// a.clear();
565     /// assert!(a.is_empty());
566     /// ```
567     #[inline]
568     #[stable(feature = "rust1", since = "1.0.0")]
569     pub fn clear(&mut self) {
570         self.base.clear();
571     }
572
573     /// Returns a reference to the map's [`BuildHasher`].
574     ///
575     /// # Examples
576     ///
577     /// ```
578     /// use std::collections::HashMap;
579     /// use std::collections::hash_map::RandomState;
580     ///
581     /// let hasher = RandomState::new();
582     /// let map: HashMap<i32, i32> = HashMap::with_hasher(hasher);
583     /// let hasher: &RandomState = map.hasher();
584     /// ```
585     #[inline]
586     #[stable(feature = "hashmap_public_hasher", since = "1.9.0")]
587     pub fn hasher(&self) -> &S {
588         self.base.hasher()
589     }
590 }
591
592 impl<K, V, S> HashMap<K, V, S>
593 where
594     K: Eq + Hash,
595     S: BuildHasher,
596 {
597     /// Reserves capacity for at least `additional` more elements to be inserted
598     /// in the `HashMap`. The collection may reserve more space to avoid
599     /// frequent reallocations.
600     ///
601     /// # Panics
602     ///
603     /// Panics if the new allocation size overflows [`usize`].
604     ///
605     /// # Examples
606     ///
607     /// ```
608     /// use std::collections::HashMap;
609     /// let mut map: HashMap<&str, i32> = HashMap::new();
610     /// map.reserve(10);
611     /// ```
612     #[inline]
613     #[stable(feature = "rust1", since = "1.0.0")]
614     pub fn reserve(&mut self, additional: usize) {
615         self.base.reserve(additional)
616     }
617
618     /// Tries to reserve capacity for at least `additional` more elements to be inserted
619     /// in the given `HashMap<K, V>`. The collection may reserve more space to avoid
620     /// frequent reallocations.
621     ///
622     /// # Errors
623     ///
624     /// If the capacity overflows, or the allocator reports a failure, then an error
625     /// is returned.
626     ///
627     /// # Examples
628     ///
629     /// ```
630     /// use std::collections::HashMap;
631     ///
632     /// let mut map: HashMap<&str, isize> = HashMap::new();
633     /// map.try_reserve(10).expect("why is the test harness OOMing on 10 bytes?");
634     /// ```
635     #[inline]
636     #[stable(feature = "try_reserve", since = "1.57.0")]
637     pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> {
638         self.base.try_reserve(additional).map_err(map_try_reserve_error)
639     }
640
641     /// Shrinks the capacity of the map as much as possible. It will drop
642     /// down as much as possible while maintaining the internal rules
643     /// and possibly leaving some space in accordance with the resize policy.
644     ///
645     /// # Examples
646     ///
647     /// ```
648     /// use std::collections::HashMap;
649     ///
650     /// let mut map: HashMap<i32, i32> = HashMap::with_capacity(100);
651     /// map.insert(1, 2);
652     /// map.insert(3, 4);
653     /// assert!(map.capacity() >= 100);
654     /// map.shrink_to_fit();
655     /// assert!(map.capacity() >= 2);
656     /// ```
657     #[inline]
658     #[stable(feature = "rust1", since = "1.0.0")]
659     pub fn shrink_to_fit(&mut self) {
660         self.base.shrink_to_fit();
661     }
662
663     /// Shrinks the capacity of the map with a lower limit. It will drop
664     /// down no lower than the supplied limit while maintaining the internal rules
665     /// and possibly leaving some space in accordance with the resize policy.
666     ///
667     /// If the current capacity is less than the lower limit, this is a no-op.
668     ///
669     /// # Examples
670     ///
671     /// ```
672     /// use std::collections::HashMap;
673     ///
674     /// let mut map: HashMap<i32, i32> = HashMap::with_capacity(100);
675     /// map.insert(1, 2);
676     /// map.insert(3, 4);
677     /// assert!(map.capacity() >= 100);
678     /// map.shrink_to(10);
679     /// assert!(map.capacity() >= 10);
680     /// map.shrink_to(0);
681     /// assert!(map.capacity() >= 2);
682     /// ```
683     #[inline]
684     #[stable(feature = "shrink_to", since = "1.56.0")]
685     pub fn shrink_to(&mut self, min_capacity: usize) {
686         self.base.shrink_to(min_capacity);
687     }
688
689     /// Gets the given key's corresponding entry in the map for in-place manipulation.
690     ///
691     /// # Examples
692     ///
693     /// ```
694     /// use std::collections::HashMap;
695     ///
696     /// let mut letters = HashMap::new();
697     ///
698     /// for ch in "a short treatise on fungi".chars() {
699     ///     let counter = letters.entry(ch).or_insert(0);
700     ///     *counter += 1;
701     /// }
702     ///
703     /// assert_eq!(letters[&'s'], 2);
704     /// assert_eq!(letters[&'t'], 3);
705     /// assert_eq!(letters[&'u'], 1);
706     /// assert_eq!(letters.get(&'y'), None);
707     /// ```
708     #[inline]
709     #[stable(feature = "rust1", since = "1.0.0")]
710     pub fn entry(&mut self, key: K) -> Entry<'_, K, V> {
711         map_entry(self.base.rustc_entry(key))
712     }
713
714     /// Returns a reference to the value corresponding to the key.
715     ///
716     /// The key may be any borrowed form of the map's key type, but
717     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
718     /// the key type.
719     ///
720     /// # Examples
721     ///
722     /// ```
723     /// use std::collections::HashMap;
724     ///
725     /// let mut map = HashMap::new();
726     /// map.insert(1, "a");
727     /// assert_eq!(map.get(&1), Some(&"a"));
728     /// assert_eq!(map.get(&2), None);
729     /// ```
730     #[stable(feature = "rust1", since = "1.0.0")]
731     #[inline]
732     pub fn get<Q: ?Sized>(&self, k: &Q) -> Option<&V>
733     where
734         K: Borrow<Q>,
735         Q: Hash + Eq,
736     {
737         self.base.get(k)
738     }
739
740     /// Returns the key-value pair corresponding to the supplied key.
741     ///
742     /// The supplied key may be any borrowed form of the map's key type, but
743     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
744     /// the key type.
745     ///
746     /// # Examples
747     ///
748     /// ```
749     /// use std::collections::HashMap;
750     ///
751     /// let mut map = HashMap::new();
752     /// map.insert(1, "a");
753     /// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
754     /// assert_eq!(map.get_key_value(&2), None);
755     /// ```
756     #[inline]
757     #[stable(feature = "map_get_key_value", since = "1.40.0")]
758     pub fn get_key_value<Q: ?Sized>(&self, k: &Q) -> Option<(&K, &V)>
759     where
760         K: Borrow<Q>,
761         Q: Hash + Eq,
762     {
763         self.base.get_key_value(k)
764     }
765
766     /// Returns `true` if the map contains a value for the specified key.
767     ///
768     /// The key may be any borrowed form of the map's key type, but
769     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
770     /// the key type.
771     ///
772     /// # Examples
773     ///
774     /// ```
775     /// use std::collections::HashMap;
776     ///
777     /// let mut map = HashMap::new();
778     /// map.insert(1, "a");
779     /// assert_eq!(map.contains_key(&1), true);
780     /// assert_eq!(map.contains_key(&2), false);
781     /// ```
782     #[inline]
783     #[stable(feature = "rust1", since = "1.0.0")]
784     pub fn contains_key<Q: ?Sized>(&self, k: &Q) -> bool
785     where
786         K: Borrow<Q>,
787         Q: Hash + Eq,
788     {
789         self.base.contains_key(k)
790     }
791
792     /// Returns a mutable reference to the value corresponding to the key.
793     ///
794     /// The key may be any borrowed form of the map's key type, but
795     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
796     /// the key type.
797     ///
798     /// # Examples
799     ///
800     /// ```
801     /// use std::collections::HashMap;
802     ///
803     /// let mut map = HashMap::new();
804     /// map.insert(1, "a");
805     /// if let Some(x) = map.get_mut(&1) {
806     ///     *x = "b";
807     /// }
808     /// assert_eq!(map[&1], "b");
809     /// ```
810     #[inline]
811     #[stable(feature = "rust1", since = "1.0.0")]
812     pub fn get_mut<Q: ?Sized>(&mut self, k: &Q) -> Option<&mut V>
813     where
814         K: Borrow<Q>,
815         Q: Hash + Eq,
816     {
817         self.base.get_mut(k)
818     }
819
820     /// Inserts a key-value pair into the map.
821     ///
822     /// If the map did not have this key present, [`None`] is returned.
823     ///
824     /// If the map did have this key present, the value is updated, and the old
825     /// value is returned. The key is not updated, though; this matters for
826     /// types that can be `==` without being identical. See the [module-level
827     /// documentation] for more.
828     ///
829     /// [module-level documentation]: crate::collections#insert-and-complex-keys
830     ///
831     /// # Examples
832     ///
833     /// ```
834     /// use std::collections::HashMap;
835     ///
836     /// let mut map = HashMap::new();
837     /// assert_eq!(map.insert(37, "a"), None);
838     /// assert_eq!(map.is_empty(), false);
839     ///
840     /// map.insert(37, "b");
841     /// assert_eq!(map.insert(37, "c"), Some("b"));
842     /// assert_eq!(map[&37], "c");
843     /// ```
844     #[inline]
845     #[stable(feature = "rust1", since = "1.0.0")]
846     pub fn insert(&mut self, k: K, v: V) -> Option<V> {
847         self.base.insert(k, v)
848     }
849
850     /// Tries to insert a key-value pair into the map, and returns
851     /// a mutable reference to the value in the entry.
852     ///
853     /// If the map already had this key present, nothing is updated, and
854     /// an error containing the occupied entry and the value is returned.
855     ///
856     /// # Examples
857     ///
858     /// Basic usage:
859     ///
860     /// ```
861     /// #![feature(map_try_insert)]
862     ///
863     /// use std::collections::HashMap;
864     ///
865     /// let mut map = HashMap::new();
866     /// assert_eq!(map.try_insert(37, "a").unwrap(), &"a");
867     ///
868     /// let err = map.try_insert(37, "b").unwrap_err();
869     /// assert_eq!(err.entry.key(), &37);
870     /// assert_eq!(err.entry.get(), &"a");
871     /// assert_eq!(err.value, "b");
872     /// ```
873     #[unstable(feature = "map_try_insert", issue = "82766")]
874     pub fn try_insert(&mut self, key: K, value: V) -> Result<&mut V, OccupiedError<'_, K, V>> {
875         match self.entry(key) {
876             Occupied(entry) => Err(OccupiedError { entry, value }),
877             Vacant(entry) => Ok(entry.insert(value)),
878         }
879     }
880
881     /// Removes a key from the map, returning the value at the key if the key
882     /// was previously in the map.
883     ///
884     /// The key may be any borrowed form of the map's key type, but
885     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
886     /// the key type.
887     ///
888     /// # Examples
889     ///
890     /// ```
891     /// use std::collections::HashMap;
892     ///
893     /// let mut map = HashMap::new();
894     /// map.insert(1, "a");
895     /// assert_eq!(map.remove(&1), Some("a"));
896     /// assert_eq!(map.remove(&1), None);
897     /// ```
898     #[inline]
899     #[stable(feature = "rust1", since = "1.0.0")]
900     pub fn remove<Q: ?Sized>(&mut self, k: &Q) -> Option<V>
901     where
902         K: Borrow<Q>,
903         Q: Hash + Eq,
904     {
905         self.base.remove(k)
906     }
907
908     /// Removes a key from the map, returning the stored key and value if the
909     /// key was previously in the map.
910     ///
911     /// The key may be any borrowed form of the map's key type, but
912     /// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
913     /// the key type.
914     ///
915     /// # Examples
916     ///
917     /// ```
918     /// use std::collections::HashMap;
919     ///
920     /// # fn main() {
921     /// let mut map = HashMap::new();
922     /// map.insert(1, "a");
923     /// assert_eq!(map.remove_entry(&1), Some((1, "a")));
924     /// assert_eq!(map.remove(&1), None);
925     /// # }
926     /// ```
927     #[inline]
928     #[stable(feature = "hash_map_remove_entry", since = "1.27.0")]
929     pub fn remove_entry<Q: ?Sized>(&mut self, k: &Q) -> Option<(K, V)>
930     where
931         K: Borrow<Q>,
932         Q: Hash + Eq,
933     {
934         self.base.remove_entry(k)
935     }
936
937     /// Retains only the elements specified by the predicate.
938     ///
939     /// In other words, remove all pairs `(k, v)` such that `f(&k, &mut v)` returns `false`.
940     /// The elements are visited in unsorted (and unspecified) order.
941     ///
942     /// # Examples
943     ///
944     /// ```
945     /// use std::collections::HashMap;
946     ///
947     /// let mut map: HashMap<i32, i32> = (0..8).map(|x| (x, x*10)).collect();
948     /// map.retain(|&k, _| k % 2 == 0);
949     /// assert_eq!(map.len(), 4);
950     /// ```
951     #[inline]
952     #[stable(feature = "retain_hash_collection", since = "1.18.0")]
953     pub fn retain<F>(&mut self, f: F)
954     where
955         F: FnMut(&K, &mut V) -> bool,
956     {
957         self.base.retain(f)
958     }
959
960     /// Creates a consuming iterator visiting all the keys in arbitrary order.
961     /// The map cannot be used after calling this.
962     /// The iterator element type is `K`.
963     ///
964     /// # Examples
965     ///
966     /// ```
967     /// use std::collections::HashMap;
968     ///
969     /// let mut map = HashMap::new();
970     /// map.insert("a", 1);
971     /// map.insert("b", 2);
972     /// map.insert("c", 3);
973     ///
974     /// let mut vec: Vec<&str> = map.into_keys().collect();
975     /// // The `IntoKeys` iterator produces keys in arbitrary order, so the
976     /// // keys must be sorted to test them against a sorted array.
977     /// vec.sort_unstable();
978     /// assert_eq!(vec, ["a", "b", "c"]);
979     /// ```
980     #[inline]
981     #[stable(feature = "map_into_keys_values", since = "1.54.0")]
982     pub fn into_keys(self) -> IntoKeys<K, V> {
983         IntoKeys { inner: self.into_iter() }
984     }
985
986     /// Creates a consuming iterator visiting all the values in arbitrary order.
987     /// The map cannot be used after calling this.
988     /// The iterator element type is `V`.
989     ///
990     /// # Examples
991     ///
992     /// ```
993     /// use std::collections::HashMap;
994     ///
995     /// let mut map = HashMap::new();
996     /// map.insert("a", 1);
997     /// map.insert("b", 2);
998     /// map.insert("c", 3);
999     ///
1000     /// let mut vec: Vec<i32> = map.into_values().collect();
1001     /// // The `IntoValues` iterator produces values in arbitrary order, so
1002     /// // the values must be sorted to test them against a sorted array.
1003     /// vec.sort_unstable();
1004     /// assert_eq!(vec, [1, 2, 3]);
1005     /// ```
1006     #[inline]
1007     #[stable(feature = "map_into_keys_values", since = "1.54.0")]
1008     pub fn into_values(self) -> IntoValues<K, V> {
1009         IntoValues { inner: self.into_iter() }
1010     }
1011 }
1012
1013 impl<K, V, S> HashMap<K, V, S>
1014 where
1015     S: BuildHasher,
1016 {
1017     /// Creates a raw entry builder for the HashMap.
1018     ///
1019     /// Raw entries provide the lowest level of control for searching and
1020     /// manipulating a map. They must be manually initialized with a hash and
1021     /// then manually searched. After this, insertions into a vacant entry
1022     /// still require an owned key to be provided.
1023     ///
1024     /// Raw entries are useful for such exotic situations as:
1025     ///
1026     /// * Hash memoization
1027     /// * Deferring the creation of an owned key until it is known to be required
1028     /// * Using a search key that doesn't work with the Borrow trait
1029     /// * Using custom comparison logic without newtype wrappers
1030     ///
1031     /// Because raw entries provide much more low-level control, it's much easier
1032     /// to put the HashMap into an inconsistent state which, while memory-safe,
1033     /// will cause the map to produce seemingly random results. Higher-level and
1034     /// more foolproof APIs like `entry` should be preferred when possible.
1035     ///
1036     /// In particular, the hash used to initialized the raw entry must still be
1037     /// consistent with the hash of the key that is ultimately stored in the entry.
1038     /// This is because implementations of HashMap may need to recompute hashes
1039     /// when resizing, at which point only the keys are available.
1040     ///
1041     /// Raw entries give mutable access to the keys. This must not be used
1042     /// to modify how the key would compare or hash, as the map will not re-evaluate
1043     /// where the key should go, meaning the keys may become "lost" if their
1044     /// location does not reflect their state. For instance, if you change a key
1045     /// so that the map now contains keys which compare equal, search may start
1046     /// acting erratically, with two keys randomly masking each other. Implementations
1047     /// are free to assume this doesn't happen (within the limits of memory-safety).
1048     #[inline]
1049     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1050     pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S> {
1051         RawEntryBuilderMut { map: self }
1052     }
1053
1054     /// Creates a raw immutable entry builder for the HashMap.
1055     ///
1056     /// Raw entries provide the lowest level of control for searching and
1057     /// manipulating a map. They must be manually initialized with a hash and
1058     /// then manually searched.
1059     ///
1060     /// This is useful for
1061     /// * Hash memoization
1062     /// * Using a search key that doesn't work with the Borrow trait
1063     /// * Using custom comparison logic without newtype wrappers
1064     ///
1065     /// Unless you are in such a situation, higher-level and more foolproof APIs like
1066     /// `get` should be preferred.
1067     ///
1068     /// Immutable raw entries have very limited use; you might instead want `raw_entry_mut`.
1069     #[inline]
1070     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1071     pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S> {
1072         RawEntryBuilder { map: self }
1073     }
1074 }
1075
1076 #[stable(feature = "rust1", since = "1.0.0")]
1077 impl<K, V, S> Clone for HashMap<K, V, S>
1078 where
1079     K: Clone,
1080     V: Clone,
1081     S: Clone,
1082 {
1083     #[inline]
1084     fn clone(&self) -> Self {
1085         Self { base: self.base.clone() }
1086     }
1087
1088     #[inline]
1089     fn clone_from(&mut self, other: &Self) {
1090         self.base.clone_from(&other.base);
1091     }
1092 }
1093
1094 #[stable(feature = "rust1", since = "1.0.0")]
1095 impl<K, V, S> PartialEq for HashMap<K, V, S>
1096 where
1097     K: Eq + Hash,
1098     V: PartialEq,
1099     S: BuildHasher,
1100 {
1101     fn eq(&self, other: &HashMap<K, V, S>) -> bool {
1102         if self.len() != other.len() {
1103             return false;
1104         }
1105
1106         self.iter().all(|(key, value)| other.get(key).map_or(false, |v| *value == *v))
1107     }
1108 }
1109
1110 #[stable(feature = "rust1", since = "1.0.0")]
1111 impl<K, V, S> Eq for HashMap<K, V, S>
1112 where
1113     K: Eq + Hash,
1114     V: Eq,
1115     S: BuildHasher,
1116 {
1117 }
1118
1119 #[stable(feature = "rust1", since = "1.0.0")]
1120 impl<K, V, S> Debug for HashMap<K, V, S>
1121 where
1122     K: Debug,
1123     V: Debug,
1124 {
1125     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1126         f.debug_map().entries(self.iter()).finish()
1127     }
1128 }
1129
1130 #[stable(feature = "rust1", since = "1.0.0")]
1131 impl<K, V, S> Default for HashMap<K, V, S>
1132 where
1133     S: Default,
1134 {
1135     /// Creates an empty `HashMap<K, V, S>`, with the `Default` value for the hasher.
1136     #[inline]
1137     fn default() -> HashMap<K, V, S> {
1138         HashMap::with_hasher(Default::default())
1139     }
1140 }
1141
1142 #[stable(feature = "rust1", since = "1.0.0")]
1143 impl<K, Q: ?Sized, V, S> Index<&Q> for HashMap<K, V, S>
1144 where
1145     K: Eq + Hash + Borrow<Q>,
1146     Q: Eq + Hash,
1147     S: BuildHasher,
1148 {
1149     type Output = V;
1150
1151     /// Returns a reference to the value corresponding to the supplied key.
1152     ///
1153     /// # Panics
1154     ///
1155     /// Panics if the key is not present in the `HashMap`.
1156     #[inline]
1157     fn index(&self, key: &Q) -> &V {
1158         self.get(key).expect("no entry found for key")
1159     }
1160 }
1161
1162 #[stable(feature = "std_collections_from_array", since = "1.56.0")]
1163 // Note: as what is currently the most convenient built-in way to construct
1164 // a HashMap, a simple usage of this function must not *require* the user
1165 // to provide a type annotation in order to infer the third type parameter
1166 // (the hasher parameter, conventionally "S").
1167 // To that end, this impl is defined using RandomState as the concrete
1168 // type of S, rather than being generic over `S: BuildHasher + Default`.
1169 // It is expected that users who want to specify a hasher will manually use
1170 // `with_capacity_and_hasher`.
1171 // If type parameter defaults worked on impls, and if type parameter
1172 // defaults could be mixed with const generics, then perhaps
1173 // this could be generalized.
1174 // See also the equivalent impl on HashSet.
1175 impl<K, V, const N: usize> From<[(K, V); N]> for HashMap<K, V, RandomState>
1176 where
1177     K: Eq + Hash,
1178 {
1179     /// # Examples
1180     ///
1181     /// ```
1182     /// use std::collections::HashMap;
1183     ///
1184     /// let map1 = HashMap::from([(1, 2), (3, 4)]);
1185     /// let map2: HashMap<_, _> = [(1, 2), (3, 4)].into();
1186     /// assert_eq!(map1, map2);
1187     /// ```
1188     fn from(arr: [(K, V); N]) -> Self {
1189         crate::array::IntoIter::new(arr).collect()
1190     }
1191 }
1192
1193 /// An iterator over the entries of a `HashMap`.
1194 ///
1195 /// This `struct` is created by the [`iter`] method on [`HashMap`]. See its
1196 /// documentation for more.
1197 ///
1198 /// [`iter`]: HashMap::iter
1199 ///
1200 /// # Example
1201 ///
1202 /// ```
1203 /// use std::collections::HashMap;
1204 ///
1205 /// let mut map = HashMap::new();
1206 /// map.insert("a", 1);
1207 /// let iter = map.iter();
1208 /// ```
1209 #[stable(feature = "rust1", since = "1.0.0")]
1210 pub struct Iter<'a, K: 'a, V: 'a> {
1211     base: base::Iter<'a, K, V>,
1212 }
1213
1214 // FIXME(#26925) Remove in favor of `#[derive(Clone)]`
1215 #[stable(feature = "rust1", since = "1.0.0")]
1216 impl<K, V> Clone for Iter<'_, K, V> {
1217     #[inline]
1218     fn clone(&self) -> Self {
1219         Iter { base: self.base.clone() }
1220     }
1221 }
1222
1223 #[stable(feature = "std_debug", since = "1.16.0")]
1224 impl<K: Debug, V: Debug> fmt::Debug for Iter<'_, K, V> {
1225     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1226         f.debug_list().entries(self.clone()).finish()
1227     }
1228 }
1229
1230 /// A mutable iterator over the entries of a `HashMap`.
1231 ///
1232 /// This `struct` is created by the [`iter_mut`] method on [`HashMap`]. See its
1233 /// documentation for more.
1234 ///
1235 /// [`iter_mut`]: HashMap::iter_mut
1236 ///
1237 /// # Example
1238 ///
1239 /// ```
1240 /// use std::collections::HashMap;
1241 ///
1242 /// let mut map = HashMap::new();
1243 /// map.insert("a", 1);
1244 /// let iter = map.iter_mut();
1245 /// ```
1246 #[stable(feature = "rust1", since = "1.0.0")]
1247 pub struct IterMut<'a, K: 'a, V: 'a> {
1248     base: base::IterMut<'a, K, V>,
1249 }
1250
1251 impl<'a, K, V> IterMut<'a, K, V> {
1252     /// Returns an iterator of references over the remaining items.
1253     #[inline]
1254     pub(super) fn iter(&self) -> Iter<'_, K, V> {
1255         Iter { base: self.base.rustc_iter() }
1256     }
1257 }
1258
1259 /// An owning iterator over the entries of a `HashMap`.
1260 ///
1261 /// This `struct` is created by the [`into_iter`] method on [`HashMap`]
1262 /// (provided by the [`IntoIterator`] trait). See its documentation for more.
1263 ///
1264 /// [`into_iter`]: IntoIterator::into_iter
1265 /// [`IntoIterator`]: crate::iter::IntoIterator
1266 ///
1267 /// # Example
1268 ///
1269 /// ```
1270 /// use std::collections::HashMap;
1271 ///
1272 /// let mut map = HashMap::new();
1273 /// map.insert("a", 1);
1274 /// let iter = map.into_iter();
1275 /// ```
1276 #[stable(feature = "rust1", since = "1.0.0")]
1277 pub struct IntoIter<K, V> {
1278     base: base::IntoIter<K, V>,
1279 }
1280
1281 impl<K, V> IntoIter<K, V> {
1282     /// Returns an iterator of references over the remaining items.
1283     #[inline]
1284     pub(super) fn iter(&self) -> Iter<'_, K, V> {
1285         Iter { base: self.base.rustc_iter() }
1286     }
1287 }
1288
1289 /// An iterator over the keys of a `HashMap`.
1290 ///
1291 /// This `struct` is created by the [`keys`] method on [`HashMap`]. See its
1292 /// documentation for more.
1293 ///
1294 /// [`keys`]: HashMap::keys
1295 ///
1296 /// # Example
1297 ///
1298 /// ```
1299 /// use std::collections::HashMap;
1300 ///
1301 /// let mut map = HashMap::new();
1302 /// map.insert("a", 1);
1303 /// let iter_keys = map.keys();
1304 /// ```
1305 #[stable(feature = "rust1", since = "1.0.0")]
1306 pub struct Keys<'a, K: 'a, V: 'a> {
1307     inner: Iter<'a, K, V>,
1308 }
1309
1310 // FIXME(#26925) Remove in favor of `#[derive(Clone)]`
1311 #[stable(feature = "rust1", since = "1.0.0")]
1312 impl<K, V> Clone for Keys<'_, K, V> {
1313     #[inline]
1314     fn clone(&self) -> Self {
1315         Keys { inner: self.inner.clone() }
1316     }
1317 }
1318
1319 #[stable(feature = "std_debug", since = "1.16.0")]
1320 impl<K: Debug, V> fmt::Debug for Keys<'_, K, V> {
1321     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1322         f.debug_list().entries(self.clone()).finish()
1323     }
1324 }
1325
1326 /// An iterator over the values of a `HashMap`.
1327 ///
1328 /// This `struct` is created by the [`values`] method on [`HashMap`]. See its
1329 /// documentation for more.
1330 ///
1331 /// [`values`]: HashMap::values
1332 ///
1333 /// # Example
1334 ///
1335 /// ```
1336 /// use std::collections::HashMap;
1337 ///
1338 /// let mut map = HashMap::new();
1339 /// map.insert("a", 1);
1340 /// let iter_values = map.values();
1341 /// ```
1342 #[stable(feature = "rust1", since = "1.0.0")]
1343 pub struct Values<'a, K: 'a, V: 'a> {
1344     inner: Iter<'a, K, V>,
1345 }
1346
1347 // FIXME(#26925) Remove in favor of `#[derive(Clone)]`
1348 #[stable(feature = "rust1", since = "1.0.0")]
1349 impl<K, V> Clone for Values<'_, K, V> {
1350     #[inline]
1351     fn clone(&self) -> Self {
1352         Values { inner: self.inner.clone() }
1353     }
1354 }
1355
1356 #[stable(feature = "std_debug", since = "1.16.0")]
1357 impl<K, V: Debug> fmt::Debug for Values<'_, K, V> {
1358     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1359         f.debug_list().entries(self.clone()).finish()
1360     }
1361 }
1362
1363 /// A draining iterator over the entries of a `HashMap`.
1364 ///
1365 /// This `struct` is created by the [`drain`] method on [`HashMap`]. See its
1366 /// documentation for more.
1367 ///
1368 /// [`drain`]: HashMap::drain
1369 ///
1370 /// # Example
1371 ///
1372 /// ```
1373 /// use std::collections::HashMap;
1374 ///
1375 /// let mut map = HashMap::new();
1376 /// map.insert("a", 1);
1377 /// let iter = map.drain();
1378 /// ```
1379 #[stable(feature = "drain", since = "1.6.0")]
1380 pub struct Drain<'a, K: 'a, V: 'a> {
1381     base: base::Drain<'a, K, V>,
1382 }
1383
1384 impl<'a, K, V> Drain<'a, K, V> {
1385     /// Returns an iterator of references over the remaining items.
1386     #[inline]
1387     pub(super) fn iter(&self) -> Iter<'_, K, V> {
1388         Iter { base: self.base.rustc_iter() }
1389     }
1390 }
1391
1392 /// A draining, filtering iterator over the entries of a `HashMap`.
1393 ///
1394 /// This `struct` is created by the [`drain_filter`] method on [`HashMap`].
1395 ///
1396 /// [`drain_filter`]: HashMap::drain_filter
1397 ///
1398 /// # Example
1399 ///
1400 /// ```
1401 /// #![feature(hash_drain_filter)]
1402 ///
1403 /// use std::collections::HashMap;
1404 ///
1405 /// let mut map = HashMap::new();
1406 /// map.insert("a", 1);
1407 /// let iter = map.drain_filter(|_k, v| *v % 2 == 0);
1408 /// ```
1409 #[unstable(feature = "hash_drain_filter", issue = "59618")]
1410 pub struct DrainFilter<'a, K, V, F>
1411 where
1412     F: FnMut(&K, &mut V) -> bool,
1413 {
1414     base: base::DrainFilter<'a, K, V, F>,
1415 }
1416
1417 /// A mutable iterator over the values of a `HashMap`.
1418 ///
1419 /// This `struct` is created by the [`values_mut`] method on [`HashMap`]. See its
1420 /// documentation for more.
1421 ///
1422 /// [`values_mut`]: HashMap::values_mut
1423 ///
1424 /// # Example
1425 ///
1426 /// ```
1427 /// use std::collections::HashMap;
1428 ///
1429 /// let mut map = HashMap::new();
1430 /// map.insert("a", 1);
1431 /// let iter_values = map.values_mut();
1432 /// ```
1433 #[stable(feature = "map_values_mut", since = "1.10.0")]
1434 pub struct ValuesMut<'a, K: 'a, V: 'a> {
1435     inner: IterMut<'a, K, V>,
1436 }
1437
1438 /// An owning iterator over the keys of a `HashMap`.
1439 ///
1440 /// This `struct` is created by the [`into_keys`] method on [`HashMap`].
1441 /// See its documentation for more.
1442 ///
1443 /// [`into_keys`]: HashMap::into_keys
1444 ///
1445 /// # Example
1446 ///
1447 /// ```
1448 /// use std::collections::HashMap;
1449 ///
1450 /// let mut map = HashMap::new();
1451 /// map.insert("a", 1);
1452 /// let iter_keys = map.into_keys();
1453 /// ```
1454 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
1455 pub struct IntoKeys<K, V> {
1456     inner: IntoIter<K, V>,
1457 }
1458
1459 /// An owning iterator over the values of a `HashMap`.
1460 ///
1461 /// This `struct` is created by the [`into_values`] method on [`HashMap`].
1462 /// See its documentation for more.
1463 ///
1464 /// [`into_values`]: HashMap::into_values
1465 ///
1466 /// # Example
1467 ///
1468 /// ```
1469 /// use std::collections::HashMap;
1470 ///
1471 /// let mut map = HashMap::new();
1472 /// map.insert("a", 1);
1473 /// let iter_keys = map.into_values();
1474 /// ```
1475 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
1476 pub struct IntoValues<K, V> {
1477     inner: IntoIter<K, V>,
1478 }
1479
1480 /// A builder for computing where in a HashMap a key-value pair would be stored.
1481 ///
1482 /// See the [`HashMap::raw_entry_mut`] docs for usage examples.
1483 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1484 pub struct RawEntryBuilderMut<'a, K: 'a, V: 'a, S: 'a> {
1485     map: &'a mut HashMap<K, V, S>,
1486 }
1487
1488 /// A view into a single entry in a map, which may either be vacant or occupied.
1489 ///
1490 /// This is a lower-level version of [`Entry`].
1491 ///
1492 /// This `enum` is constructed through the [`raw_entry_mut`] method on [`HashMap`],
1493 /// then calling one of the methods of that [`RawEntryBuilderMut`].
1494 ///
1495 /// [`raw_entry_mut`]: HashMap::raw_entry_mut
1496 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1497 pub enum RawEntryMut<'a, K: 'a, V: 'a, S: 'a> {
1498     /// An occupied entry.
1499     Occupied(RawOccupiedEntryMut<'a, K, V, S>),
1500     /// A vacant entry.
1501     Vacant(RawVacantEntryMut<'a, K, V, S>),
1502 }
1503
1504 /// A view into an occupied entry in a `HashMap`.
1505 /// It is part of the [`RawEntryMut`] enum.
1506 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1507 pub struct RawOccupiedEntryMut<'a, K: 'a, V: 'a, S: 'a> {
1508     base: base::RawOccupiedEntryMut<'a, K, V, S>,
1509 }
1510
1511 /// A view into a vacant entry in a `HashMap`.
1512 /// It is part of the [`RawEntryMut`] enum.
1513 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1514 pub struct RawVacantEntryMut<'a, K: 'a, V: 'a, S: 'a> {
1515     base: base::RawVacantEntryMut<'a, K, V, S>,
1516 }
1517
1518 /// A builder for computing where in a HashMap a key-value pair would be stored.
1519 ///
1520 /// See the [`HashMap::raw_entry`] docs for usage examples.
1521 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1522 pub struct RawEntryBuilder<'a, K: 'a, V: 'a, S: 'a> {
1523     map: &'a HashMap<K, V, S>,
1524 }
1525
1526 impl<'a, K, V, S> RawEntryBuilderMut<'a, K, V, S>
1527 where
1528     S: BuildHasher,
1529 {
1530     /// Creates a `RawEntryMut` from the given key.
1531     #[inline]
1532     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1533     pub fn from_key<Q: ?Sized>(self, k: &Q) -> RawEntryMut<'a, K, V, S>
1534     where
1535         K: Borrow<Q>,
1536         Q: Hash + Eq,
1537     {
1538         map_raw_entry(self.map.base.raw_entry_mut().from_key(k))
1539     }
1540
1541     /// Creates a `RawEntryMut` from the given key and its hash.
1542     #[inline]
1543     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1544     pub fn from_key_hashed_nocheck<Q: ?Sized>(self, hash: u64, k: &Q) -> RawEntryMut<'a, K, V, S>
1545     where
1546         K: Borrow<Q>,
1547         Q: Eq,
1548     {
1549         map_raw_entry(self.map.base.raw_entry_mut().from_key_hashed_nocheck(hash, k))
1550     }
1551
1552     /// Creates a `RawEntryMut` from the given hash.
1553     #[inline]
1554     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1555     pub fn from_hash<F>(self, hash: u64, is_match: F) -> RawEntryMut<'a, K, V, S>
1556     where
1557         for<'b> F: FnMut(&'b K) -> bool,
1558     {
1559         map_raw_entry(self.map.base.raw_entry_mut().from_hash(hash, is_match))
1560     }
1561 }
1562
1563 impl<'a, K, V, S> RawEntryBuilder<'a, K, V, S>
1564 where
1565     S: BuildHasher,
1566 {
1567     /// Access an entry by key.
1568     #[inline]
1569     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1570     pub fn from_key<Q: ?Sized>(self, k: &Q) -> Option<(&'a K, &'a V)>
1571     where
1572         K: Borrow<Q>,
1573         Q: Hash + Eq,
1574     {
1575         self.map.base.raw_entry().from_key(k)
1576     }
1577
1578     /// Access an entry by a key and its hash.
1579     #[inline]
1580     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1581     pub fn from_key_hashed_nocheck<Q: ?Sized>(self, hash: u64, k: &Q) -> Option<(&'a K, &'a V)>
1582     where
1583         K: Borrow<Q>,
1584         Q: Hash + Eq,
1585     {
1586         self.map.base.raw_entry().from_key_hashed_nocheck(hash, k)
1587     }
1588
1589     /// Access an entry by hash.
1590     #[inline]
1591     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1592     pub fn from_hash<F>(self, hash: u64, is_match: F) -> Option<(&'a K, &'a V)>
1593     where
1594         F: FnMut(&K) -> bool,
1595     {
1596         self.map.base.raw_entry().from_hash(hash, is_match)
1597     }
1598 }
1599
1600 impl<'a, K, V, S> RawEntryMut<'a, K, V, S> {
1601     /// Ensures a value is in the entry by inserting the default if empty, and returns
1602     /// mutable references to the key and value in the entry.
1603     ///
1604     /// # Examples
1605     ///
1606     /// ```
1607     /// #![feature(hash_raw_entry)]
1608     /// use std::collections::HashMap;
1609     ///
1610     /// let mut map: HashMap<&str, u32> = HashMap::new();
1611     ///
1612     /// map.raw_entry_mut().from_key("poneyland").or_insert("poneyland", 3);
1613     /// assert_eq!(map["poneyland"], 3);
1614     ///
1615     /// *map.raw_entry_mut().from_key("poneyland").or_insert("poneyland", 10).1 *= 2;
1616     /// assert_eq!(map["poneyland"], 6);
1617     /// ```
1618     #[inline]
1619     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1620     pub fn or_insert(self, default_key: K, default_val: V) -> (&'a mut K, &'a mut V)
1621     where
1622         K: Hash,
1623         S: BuildHasher,
1624     {
1625         match self {
1626             RawEntryMut::Occupied(entry) => entry.into_key_value(),
1627             RawEntryMut::Vacant(entry) => entry.insert(default_key, default_val),
1628         }
1629     }
1630
1631     /// Ensures a value is in the entry by inserting the result of the default function if empty,
1632     /// and returns mutable references to the key and value in the entry.
1633     ///
1634     /// # Examples
1635     ///
1636     /// ```
1637     /// #![feature(hash_raw_entry)]
1638     /// use std::collections::HashMap;
1639     ///
1640     /// let mut map: HashMap<&str, String> = HashMap::new();
1641     ///
1642     /// map.raw_entry_mut().from_key("poneyland").or_insert_with(|| {
1643     ///     ("poneyland", "hoho".to_string())
1644     /// });
1645     ///
1646     /// assert_eq!(map["poneyland"], "hoho".to_string());
1647     /// ```
1648     #[inline]
1649     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1650     pub fn or_insert_with<F>(self, default: F) -> (&'a mut K, &'a mut V)
1651     where
1652         F: FnOnce() -> (K, V),
1653         K: Hash,
1654         S: BuildHasher,
1655     {
1656         match self {
1657             RawEntryMut::Occupied(entry) => entry.into_key_value(),
1658             RawEntryMut::Vacant(entry) => {
1659                 let (k, v) = default();
1660                 entry.insert(k, v)
1661             }
1662         }
1663     }
1664
1665     /// Provides in-place mutable access to an occupied entry before any
1666     /// potential inserts into the map.
1667     ///
1668     /// # Examples
1669     ///
1670     /// ```
1671     /// #![feature(hash_raw_entry)]
1672     /// use std::collections::HashMap;
1673     ///
1674     /// let mut map: HashMap<&str, u32> = HashMap::new();
1675     ///
1676     /// map.raw_entry_mut()
1677     ///    .from_key("poneyland")
1678     ///    .and_modify(|_k, v| { *v += 1 })
1679     ///    .or_insert("poneyland", 42);
1680     /// assert_eq!(map["poneyland"], 42);
1681     ///
1682     /// map.raw_entry_mut()
1683     ///    .from_key("poneyland")
1684     ///    .and_modify(|_k, v| { *v += 1 })
1685     ///    .or_insert("poneyland", 0);
1686     /// assert_eq!(map["poneyland"], 43);
1687     /// ```
1688     #[inline]
1689     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1690     pub fn and_modify<F>(self, f: F) -> Self
1691     where
1692         F: FnOnce(&mut K, &mut V),
1693     {
1694         match self {
1695             RawEntryMut::Occupied(mut entry) => {
1696                 {
1697                     let (k, v) = entry.get_key_value_mut();
1698                     f(k, v);
1699                 }
1700                 RawEntryMut::Occupied(entry)
1701             }
1702             RawEntryMut::Vacant(entry) => RawEntryMut::Vacant(entry),
1703         }
1704     }
1705 }
1706
1707 impl<'a, K, V, S> RawOccupiedEntryMut<'a, K, V, S> {
1708     /// Gets a reference to the key in the entry.
1709     #[inline]
1710     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1711     pub fn key(&self) -> &K {
1712         self.base.key()
1713     }
1714
1715     /// Gets a mutable reference to the key in the entry.
1716     #[inline]
1717     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1718     pub fn key_mut(&mut self) -> &mut K {
1719         self.base.key_mut()
1720     }
1721
1722     /// Converts the entry into a mutable reference to the key in the entry
1723     /// with a lifetime bound to the map itself.
1724     #[inline]
1725     #[must_use = "`self` will be dropped if the result is not used"]
1726     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1727     pub fn into_key(self) -> &'a mut K {
1728         self.base.into_key()
1729     }
1730
1731     /// Gets a reference to the value in the entry.
1732     #[inline]
1733     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1734     pub fn get(&self) -> &V {
1735         self.base.get()
1736     }
1737
1738     /// Converts the `OccupiedEntry` into a mutable reference to the value in the entry
1739     /// with a lifetime bound to the map itself.
1740     #[inline]
1741     #[must_use = "`self` will be dropped if the result is not used"]
1742     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1743     pub fn into_mut(self) -> &'a mut V {
1744         self.base.into_mut()
1745     }
1746
1747     /// Gets a mutable reference to the value in the entry.
1748     #[inline]
1749     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1750     pub fn get_mut(&mut self) -> &mut V {
1751         self.base.get_mut()
1752     }
1753
1754     /// Gets a reference to the key and value in the entry.
1755     #[inline]
1756     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1757     pub fn get_key_value(&mut self) -> (&K, &V) {
1758         self.base.get_key_value()
1759     }
1760
1761     /// Gets a mutable reference to the key and value in the entry.
1762     #[inline]
1763     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1764     pub fn get_key_value_mut(&mut self) -> (&mut K, &mut V) {
1765         self.base.get_key_value_mut()
1766     }
1767
1768     /// Converts the `OccupiedEntry` into a mutable reference to the key and value in the entry
1769     /// with a lifetime bound to the map itself.
1770     #[inline]
1771     #[must_use = "`self` will be dropped if the result is not used"]
1772     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1773     pub fn into_key_value(self) -> (&'a mut K, &'a mut V) {
1774         self.base.into_key_value()
1775     }
1776
1777     /// Sets the value of the entry, and returns the entry's old value.
1778     #[inline]
1779     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1780     pub fn insert(&mut self, value: V) -> V {
1781         self.base.insert(value)
1782     }
1783
1784     /// Sets the value of the entry, and returns the entry's old value.
1785     #[inline]
1786     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1787     pub fn insert_key(&mut self, key: K) -> K {
1788         self.base.insert_key(key)
1789     }
1790
1791     /// Takes the value out of the entry, and returns it.
1792     #[inline]
1793     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1794     pub fn remove(self) -> V {
1795         self.base.remove()
1796     }
1797
1798     /// Take the ownership of the key and value from the map.
1799     #[inline]
1800     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1801     pub fn remove_entry(self) -> (K, V) {
1802         self.base.remove_entry()
1803     }
1804 }
1805
1806 impl<'a, K, V, S> RawVacantEntryMut<'a, K, V, S> {
1807     /// Sets the value of the entry with the `VacantEntry`'s key,
1808     /// and returns a mutable reference to it.
1809     #[inline]
1810     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1811     pub fn insert(self, key: K, value: V) -> (&'a mut K, &'a mut V)
1812     where
1813         K: Hash,
1814         S: BuildHasher,
1815     {
1816         self.base.insert(key, value)
1817     }
1818
1819     /// Sets the value of the entry with the VacantEntry's key,
1820     /// and returns a mutable reference to it.
1821     #[inline]
1822     #[unstable(feature = "hash_raw_entry", issue = "56167")]
1823     pub fn insert_hashed_nocheck(self, hash: u64, key: K, value: V) -> (&'a mut K, &'a mut V)
1824     where
1825         K: Hash,
1826         S: BuildHasher,
1827     {
1828         self.base.insert_hashed_nocheck(hash, key, value)
1829     }
1830 }
1831
1832 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1833 impl<K, V, S> Debug for RawEntryBuilderMut<'_, K, V, S> {
1834     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1835         f.debug_struct("RawEntryBuilder").finish_non_exhaustive()
1836     }
1837 }
1838
1839 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1840 impl<K: Debug, V: Debug, S> Debug for RawEntryMut<'_, K, V, S> {
1841     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1842         match *self {
1843             RawEntryMut::Vacant(ref v) => f.debug_tuple("RawEntry").field(v).finish(),
1844             RawEntryMut::Occupied(ref o) => f.debug_tuple("RawEntry").field(o).finish(),
1845         }
1846     }
1847 }
1848
1849 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1850 impl<K: Debug, V: Debug, S> Debug for RawOccupiedEntryMut<'_, K, V, S> {
1851     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1852         f.debug_struct("RawOccupiedEntryMut")
1853             .field("key", self.key())
1854             .field("value", self.get())
1855             .finish_non_exhaustive()
1856     }
1857 }
1858
1859 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1860 impl<K, V, S> Debug for RawVacantEntryMut<'_, K, V, S> {
1861     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1862         f.debug_struct("RawVacantEntryMut").finish_non_exhaustive()
1863     }
1864 }
1865
1866 #[unstable(feature = "hash_raw_entry", issue = "56167")]
1867 impl<K, V, S> Debug for RawEntryBuilder<'_, K, V, S> {
1868     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1869         f.debug_struct("RawEntryBuilder").finish_non_exhaustive()
1870     }
1871 }
1872
1873 /// A view into a single entry in a map, which may either be vacant or occupied.
1874 ///
1875 /// This `enum` is constructed from the [`entry`] method on [`HashMap`].
1876 ///
1877 /// [`entry`]: HashMap::entry
1878 #[stable(feature = "rust1", since = "1.0.0")]
1879 #[cfg_attr(not(test), rustc_diagnostic_item = "HashMapEntry")]
1880 pub enum Entry<'a, K: 'a, V: 'a> {
1881     /// An occupied entry.
1882     #[stable(feature = "rust1", since = "1.0.0")]
1883     Occupied(#[stable(feature = "rust1", since = "1.0.0")] OccupiedEntry<'a, K, V>),
1884
1885     /// A vacant entry.
1886     #[stable(feature = "rust1", since = "1.0.0")]
1887     Vacant(#[stable(feature = "rust1", since = "1.0.0")] VacantEntry<'a, K, V>),
1888 }
1889
1890 #[stable(feature = "debug_hash_map", since = "1.12.0")]
1891 impl<K: Debug, V: Debug> Debug for Entry<'_, K, V> {
1892     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1893         match *self {
1894             Vacant(ref v) => f.debug_tuple("Entry").field(v).finish(),
1895             Occupied(ref o) => f.debug_tuple("Entry").field(o).finish(),
1896         }
1897     }
1898 }
1899
1900 /// A view into an occupied entry in a `HashMap`.
1901 /// It is part of the [`Entry`] enum.
1902 #[stable(feature = "rust1", since = "1.0.0")]
1903 pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
1904     base: base::RustcOccupiedEntry<'a, K, V>,
1905 }
1906
1907 #[stable(feature = "debug_hash_map", since = "1.12.0")]
1908 impl<K: Debug, V: Debug> Debug for OccupiedEntry<'_, K, V> {
1909     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1910         f.debug_struct("OccupiedEntry")
1911             .field("key", self.key())
1912             .field("value", self.get())
1913             .finish_non_exhaustive()
1914     }
1915 }
1916
1917 /// A view into a vacant entry in a `HashMap`.
1918 /// It is part of the [`Entry`] enum.
1919 #[stable(feature = "rust1", since = "1.0.0")]
1920 pub struct VacantEntry<'a, K: 'a, V: 'a> {
1921     base: base::RustcVacantEntry<'a, K, V>,
1922 }
1923
1924 #[stable(feature = "debug_hash_map", since = "1.12.0")]
1925 impl<K: Debug, V> Debug for VacantEntry<'_, K, V> {
1926     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1927         f.debug_tuple("VacantEntry").field(self.key()).finish()
1928     }
1929 }
1930
1931 /// The error returned by [`try_insert`](HashMap::try_insert) when the key already exists.
1932 ///
1933 /// Contains the occupied entry, and the value that was not inserted.
1934 #[unstable(feature = "map_try_insert", issue = "82766")]
1935 pub struct OccupiedError<'a, K: 'a, V: 'a> {
1936     /// The entry in the map that was already occupied.
1937     pub entry: OccupiedEntry<'a, K, V>,
1938     /// The value which was not inserted, because the entry was already occupied.
1939     pub value: V,
1940 }
1941
1942 #[unstable(feature = "map_try_insert", issue = "82766")]
1943 impl<K: Debug, V: Debug> Debug for OccupiedError<'_, K, V> {
1944     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1945         f.debug_struct("OccupiedError")
1946             .field("key", self.entry.key())
1947             .field("old_value", self.entry.get())
1948             .field("new_value", &self.value)
1949             .finish_non_exhaustive()
1950     }
1951 }
1952
1953 #[unstable(feature = "map_try_insert", issue = "82766")]
1954 impl<'a, K: Debug, V: Debug> fmt::Display for OccupiedError<'a, K, V> {
1955     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1956         write!(
1957             f,
1958             "failed to insert {:?}, key {:?} already exists with value {:?}",
1959             self.value,
1960             self.entry.key(),
1961             self.entry.get(),
1962         )
1963     }
1964 }
1965
1966 #[stable(feature = "rust1", since = "1.0.0")]
1967 impl<'a, K, V, S> IntoIterator for &'a HashMap<K, V, S> {
1968     type Item = (&'a K, &'a V);
1969     type IntoIter = Iter<'a, K, V>;
1970
1971     #[inline]
1972     fn into_iter(self) -> Iter<'a, K, V> {
1973         self.iter()
1974     }
1975 }
1976
1977 #[stable(feature = "rust1", since = "1.0.0")]
1978 impl<'a, K, V, S> IntoIterator for &'a mut HashMap<K, V, S> {
1979     type Item = (&'a K, &'a mut V);
1980     type IntoIter = IterMut<'a, K, V>;
1981
1982     #[inline]
1983     fn into_iter(self) -> IterMut<'a, K, V> {
1984         self.iter_mut()
1985     }
1986 }
1987
1988 #[stable(feature = "rust1", since = "1.0.0")]
1989 impl<K, V, S> IntoIterator for HashMap<K, V, S> {
1990     type Item = (K, V);
1991     type IntoIter = IntoIter<K, V>;
1992
1993     /// Creates a consuming iterator, that is, one that moves each key-value
1994     /// pair out of the map in arbitrary order. The map cannot be used after
1995     /// calling this.
1996     ///
1997     /// # Examples
1998     ///
1999     /// ```
2000     /// use std::collections::HashMap;
2001     ///
2002     /// let mut map = HashMap::new();
2003     /// map.insert("a", 1);
2004     /// map.insert("b", 2);
2005     /// map.insert("c", 3);
2006     ///
2007     /// // Not possible with .iter()
2008     /// let vec: Vec<(&str, i32)> = map.into_iter().collect();
2009     /// ```
2010     #[inline]
2011     fn into_iter(self) -> IntoIter<K, V> {
2012         IntoIter { base: self.base.into_iter() }
2013     }
2014 }
2015
2016 #[stable(feature = "rust1", since = "1.0.0")]
2017 impl<'a, K, V> Iterator for Iter<'a, K, V> {
2018     type Item = (&'a K, &'a V);
2019
2020     #[inline]
2021     fn next(&mut self) -> Option<(&'a K, &'a V)> {
2022         self.base.next()
2023     }
2024     #[inline]
2025     fn size_hint(&self) -> (usize, Option<usize>) {
2026         self.base.size_hint()
2027     }
2028 }
2029 #[stable(feature = "rust1", since = "1.0.0")]
2030 impl<K, V> ExactSizeIterator for Iter<'_, K, V> {
2031     #[inline]
2032     fn len(&self) -> usize {
2033         self.base.len()
2034     }
2035 }
2036
2037 #[stable(feature = "fused", since = "1.26.0")]
2038 impl<K, V> FusedIterator for Iter<'_, K, V> {}
2039
2040 #[stable(feature = "rust1", since = "1.0.0")]
2041 impl<'a, K, V> Iterator for IterMut<'a, K, V> {
2042     type Item = (&'a K, &'a mut V);
2043
2044     #[inline]
2045     fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
2046         self.base.next()
2047     }
2048     #[inline]
2049     fn size_hint(&self) -> (usize, Option<usize>) {
2050         self.base.size_hint()
2051     }
2052 }
2053 #[stable(feature = "rust1", since = "1.0.0")]
2054 impl<K, V> ExactSizeIterator for IterMut<'_, K, V> {
2055     #[inline]
2056     fn len(&self) -> usize {
2057         self.base.len()
2058     }
2059 }
2060 #[stable(feature = "fused", since = "1.26.0")]
2061 impl<K, V> FusedIterator for IterMut<'_, K, V> {}
2062
2063 #[stable(feature = "std_debug", since = "1.16.0")]
2064 impl<K, V> fmt::Debug for IterMut<'_, K, V>
2065 where
2066     K: fmt::Debug,
2067     V: fmt::Debug,
2068 {
2069     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2070         f.debug_list().entries(self.iter()).finish()
2071     }
2072 }
2073
2074 #[stable(feature = "rust1", since = "1.0.0")]
2075 impl<K, V> Iterator for IntoIter<K, V> {
2076     type Item = (K, V);
2077
2078     #[inline]
2079     fn next(&mut self) -> Option<(K, V)> {
2080         self.base.next()
2081     }
2082     #[inline]
2083     fn size_hint(&self) -> (usize, Option<usize>) {
2084         self.base.size_hint()
2085     }
2086 }
2087 #[stable(feature = "rust1", since = "1.0.0")]
2088 impl<K, V> ExactSizeIterator for IntoIter<K, V> {
2089     #[inline]
2090     fn len(&self) -> usize {
2091         self.base.len()
2092     }
2093 }
2094 #[stable(feature = "fused", since = "1.26.0")]
2095 impl<K, V> FusedIterator for IntoIter<K, V> {}
2096
2097 #[stable(feature = "std_debug", since = "1.16.0")]
2098 impl<K: Debug, V: Debug> fmt::Debug for IntoIter<K, V> {
2099     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2100         f.debug_list().entries(self.iter()).finish()
2101     }
2102 }
2103
2104 #[stable(feature = "rust1", since = "1.0.0")]
2105 impl<'a, K, V> Iterator for Keys<'a, K, V> {
2106     type Item = &'a K;
2107
2108     #[inline]
2109     fn next(&mut self) -> Option<&'a K> {
2110         self.inner.next().map(|(k, _)| k)
2111     }
2112     #[inline]
2113     fn size_hint(&self) -> (usize, Option<usize>) {
2114         self.inner.size_hint()
2115     }
2116 }
2117 #[stable(feature = "rust1", since = "1.0.0")]
2118 impl<K, V> ExactSizeIterator for Keys<'_, K, V> {
2119     #[inline]
2120     fn len(&self) -> usize {
2121         self.inner.len()
2122     }
2123 }
2124 #[stable(feature = "fused", since = "1.26.0")]
2125 impl<K, V> FusedIterator for Keys<'_, K, V> {}
2126
2127 #[stable(feature = "rust1", since = "1.0.0")]
2128 impl<'a, K, V> Iterator for Values<'a, K, V> {
2129     type Item = &'a V;
2130
2131     #[inline]
2132     fn next(&mut self) -> Option<&'a V> {
2133         self.inner.next().map(|(_, v)| v)
2134     }
2135     #[inline]
2136     fn size_hint(&self) -> (usize, Option<usize>) {
2137         self.inner.size_hint()
2138     }
2139 }
2140 #[stable(feature = "rust1", since = "1.0.0")]
2141 impl<K, V> ExactSizeIterator for Values<'_, K, V> {
2142     #[inline]
2143     fn len(&self) -> usize {
2144         self.inner.len()
2145     }
2146 }
2147 #[stable(feature = "fused", since = "1.26.0")]
2148 impl<K, V> FusedIterator for Values<'_, K, V> {}
2149
2150 #[stable(feature = "map_values_mut", since = "1.10.0")]
2151 impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
2152     type Item = &'a mut V;
2153
2154     #[inline]
2155     fn next(&mut self) -> Option<&'a mut V> {
2156         self.inner.next().map(|(_, v)| v)
2157     }
2158     #[inline]
2159     fn size_hint(&self) -> (usize, Option<usize>) {
2160         self.inner.size_hint()
2161     }
2162 }
2163 #[stable(feature = "map_values_mut", since = "1.10.0")]
2164 impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V> {
2165     #[inline]
2166     fn len(&self) -> usize {
2167         self.inner.len()
2168     }
2169 }
2170 #[stable(feature = "fused", since = "1.26.0")]
2171 impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}
2172
2173 #[stable(feature = "std_debug", since = "1.16.0")]
2174 impl<K, V: fmt::Debug> fmt::Debug for ValuesMut<'_, K, V> {
2175     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2176         f.debug_list().entries(self.inner.iter().map(|(_, val)| val)).finish()
2177     }
2178 }
2179
2180 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2181 impl<K, V> Iterator for IntoKeys<K, V> {
2182     type Item = K;
2183
2184     #[inline]
2185     fn next(&mut self) -> Option<K> {
2186         self.inner.next().map(|(k, _)| k)
2187     }
2188     #[inline]
2189     fn size_hint(&self) -> (usize, Option<usize>) {
2190         self.inner.size_hint()
2191     }
2192 }
2193 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2194 impl<K, V> ExactSizeIterator for IntoKeys<K, V> {
2195     #[inline]
2196     fn len(&self) -> usize {
2197         self.inner.len()
2198     }
2199 }
2200 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2201 impl<K, V> FusedIterator for IntoKeys<K, V> {}
2202
2203 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2204 impl<K: Debug, V> fmt::Debug for IntoKeys<K, V> {
2205     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2206         f.debug_list().entries(self.inner.iter().map(|(k, _)| k)).finish()
2207     }
2208 }
2209
2210 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2211 impl<K, V> Iterator for IntoValues<K, V> {
2212     type Item = V;
2213
2214     #[inline]
2215     fn next(&mut self) -> Option<V> {
2216         self.inner.next().map(|(_, v)| v)
2217     }
2218     #[inline]
2219     fn size_hint(&self) -> (usize, Option<usize>) {
2220         self.inner.size_hint()
2221     }
2222 }
2223 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2224 impl<K, V> ExactSizeIterator for IntoValues<K, V> {
2225     #[inline]
2226     fn len(&self) -> usize {
2227         self.inner.len()
2228     }
2229 }
2230 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2231 impl<K, V> FusedIterator for IntoValues<K, V> {}
2232
2233 #[stable(feature = "map_into_keys_values", since = "1.54.0")]
2234 impl<K, V: Debug> fmt::Debug for IntoValues<K, V> {
2235     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2236         f.debug_list().entries(self.inner.iter().map(|(_, v)| v)).finish()
2237     }
2238 }
2239
2240 #[stable(feature = "drain", since = "1.6.0")]
2241 impl<'a, K, V> Iterator for Drain<'a, K, V> {
2242     type Item = (K, V);
2243
2244     #[inline]
2245     fn next(&mut self) -> Option<(K, V)> {
2246         self.base.next()
2247     }
2248     #[inline]
2249     fn size_hint(&self) -> (usize, Option<usize>) {
2250         self.base.size_hint()
2251     }
2252 }
2253 #[stable(feature = "drain", since = "1.6.0")]
2254 impl<K, V> ExactSizeIterator for Drain<'_, K, V> {
2255     #[inline]
2256     fn len(&self) -> usize {
2257         self.base.len()
2258     }
2259 }
2260 #[stable(feature = "fused", since = "1.26.0")]
2261 impl<K, V> FusedIterator for Drain<'_, K, V> {}
2262
2263 #[stable(feature = "std_debug", since = "1.16.0")]
2264 impl<K, V> fmt::Debug for Drain<'_, K, V>
2265 where
2266     K: fmt::Debug,
2267     V: fmt::Debug,
2268 {
2269     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2270         f.debug_list().entries(self.iter()).finish()
2271     }
2272 }
2273
2274 #[unstable(feature = "hash_drain_filter", issue = "59618")]
2275 impl<K, V, F> Iterator for DrainFilter<'_, K, V, F>
2276 where
2277     F: FnMut(&K, &mut V) -> bool,
2278 {
2279     type Item = (K, V);
2280
2281     #[inline]
2282     fn next(&mut self) -> Option<(K, V)> {
2283         self.base.next()
2284     }
2285     #[inline]
2286     fn size_hint(&self) -> (usize, Option<usize>) {
2287         self.base.size_hint()
2288     }
2289 }
2290
2291 #[unstable(feature = "hash_drain_filter", issue = "59618")]
2292 impl<K, V, F> FusedIterator for DrainFilter<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {}
2293
2294 #[unstable(feature = "hash_drain_filter", issue = "59618")]
2295 impl<'a, K, V, F> fmt::Debug for DrainFilter<'a, K, V, F>
2296 where
2297     F: FnMut(&K, &mut V) -> bool,
2298 {
2299     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2300         f.debug_struct("DrainFilter").finish_non_exhaustive()
2301     }
2302 }
2303
2304 impl<'a, K, V> Entry<'a, K, V> {
2305     /// Ensures a value is in the entry by inserting the default if empty, and returns
2306     /// a mutable reference to the value in the entry.
2307     ///
2308     /// # Examples
2309     ///
2310     /// ```
2311     /// use std::collections::HashMap;
2312     ///
2313     /// let mut map: HashMap<&str, u32> = HashMap::new();
2314     ///
2315     /// map.entry("poneyland").or_insert(3);
2316     /// assert_eq!(map["poneyland"], 3);
2317     ///
2318     /// *map.entry("poneyland").or_insert(10) *= 2;
2319     /// assert_eq!(map["poneyland"], 6);
2320     /// ```
2321     #[inline]
2322     #[stable(feature = "rust1", since = "1.0.0")]
2323     pub fn or_insert(self, default: V) -> &'a mut V {
2324         match self {
2325             Occupied(entry) => entry.into_mut(),
2326             Vacant(entry) => entry.insert(default),
2327         }
2328     }
2329
2330     /// Ensures a value is in the entry by inserting the result of the default function if empty,
2331     /// and returns a mutable reference to the value in the entry.
2332     ///
2333     /// # Examples
2334     ///
2335     /// ```
2336     /// use std::collections::HashMap;
2337     ///
2338     /// let mut map: HashMap<&str, String> = HashMap::new();
2339     /// let s = "hoho".to_string();
2340     ///
2341     /// map.entry("poneyland").or_insert_with(|| s);
2342     ///
2343     /// assert_eq!(map["poneyland"], "hoho".to_string());
2344     /// ```
2345     #[inline]
2346     #[stable(feature = "rust1", since = "1.0.0")]
2347     pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V {
2348         match self {
2349             Occupied(entry) => entry.into_mut(),
2350             Vacant(entry) => entry.insert(default()),
2351         }
2352     }
2353
2354     /// Ensures a value is in the entry by inserting, if empty, the result of the default function.
2355     /// This method allows for generating key-derived values for insertion by providing the default
2356     /// function a reference to the key that was moved during the `.entry(key)` method call.
2357     ///
2358     /// The reference to the moved key is provided so that cloning or copying the key is
2359     /// unnecessary, unlike with `.or_insert_with(|| ... )`.
2360     ///
2361     /// # Examples
2362     ///
2363     /// ```
2364     /// use std::collections::HashMap;
2365     ///
2366     /// let mut map: HashMap<&str, usize> = HashMap::new();
2367     ///
2368     /// map.entry("poneyland").or_insert_with_key(|key| key.chars().count());
2369     ///
2370     /// assert_eq!(map["poneyland"], 9);
2371     /// ```
2372     #[inline]
2373     #[stable(feature = "or_insert_with_key", since = "1.50.0")]
2374     pub fn or_insert_with_key<F: FnOnce(&K) -> V>(self, default: F) -> &'a mut V {
2375         match self {
2376             Occupied(entry) => entry.into_mut(),
2377             Vacant(entry) => {
2378                 let value = default(entry.key());
2379                 entry.insert(value)
2380             }
2381         }
2382     }
2383
2384     /// Returns a reference to this entry's key.
2385     ///
2386     /// # Examples
2387     ///
2388     /// ```
2389     /// use std::collections::HashMap;
2390     ///
2391     /// let mut map: HashMap<&str, u32> = HashMap::new();
2392     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2393     /// ```
2394     #[inline]
2395     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2396     pub fn key(&self) -> &K {
2397         match *self {
2398             Occupied(ref entry) => entry.key(),
2399             Vacant(ref entry) => entry.key(),
2400         }
2401     }
2402
2403     /// Provides in-place mutable access to an occupied entry before any
2404     /// potential inserts into the map.
2405     ///
2406     /// # Examples
2407     ///
2408     /// ```
2409     /// use std::collections::HashMap;
2410     ///
2411     /// let mut map: HashMap<&str, u32> = HashMap::new();
2412     ///
2413     /// map.entry("poneyland")
2414     ///    .and_modify(|e| { *e += 1 })
2415     ///    .or_insert(42);
2416     /// assert_eq!(map["poneyland"], 42);
2417     ///
2418     /// map.entry("poneyland")
2419     ///    .and_modify(|e| { *e += 1 })
2420     ///    .or_insert(42);
2421     /// assert_eq!(map["poneyland"], 43);
2422     /// ```
2423     #[inline]
2424     #[stable(feature = "entry_and_modify", since = "1.26.0")]
2425     pub fn and_modify<F>(self, f: F) -> Self
2426     where
2427         F: FnOnce(&mut V),
2428     {
2429         match self {
2430             Occupied(mut entry) => {
2431                 f(entry.get_mut());
2432                 Occupied(entry)
2433             }
2434             Vacant(entry) => Vacant(entry),
2435         }
2436     }
2437
2438     /// Sets the value of the entry, and returns an `OccupiedEntry`.
2439     ///
2440     /// # Examples
2441     ///
2442     /// ```
2443     /// #![feature(entry_insert)]
2444     /// use std::collections::HashMap;
2445     ///
2446     /// let mut map: HashMap<&str, String> = HashMap::new();
2447     /// let entry = map.entry("poneyland").insert("hoho".to_string());
2448     ///
2449     /// assert_eq!(entry.key(), &"poneyland");
2450     /// ```
2451     #[inline]
2452     #[unstable(feature = "entry_insert", issue = "65225")]
2453     pub fn insert(self, value: V) -> OccupiedEntry<'a, K, V> {
2454         match self {
2455             Occupied(mut entry) => {
2456                 entry.insert(value);
2457                 entry
2458             }
2459             Vacant(entry) => entry.insert_entry(value),
2460         }
2461     }
2462 }
2463
2464 impl<'a, K, V: Default> Entry<'a, K, V> {
2465     /// Ensures a value is in the entry by inserting the default value if empty,
2466     /// and returns a mutable reference to the value in the entry.
2467     ///
2468     /// # Examples
2469     ///
2470     /// ```
2471     /// # fn main() {
2472     /// use std::collections::HashMap;
2473     ///
2474     /// let mut map: HashMap<&str, Option<u32>> = HashMap::new();
2475     /// map.entry("poneyland").or_default();
2476     ///
2477     /// assert_eq!(map["poneyland"], None);
2478     /// # }
2479     /// ```
2480     #[inline]
2481     #[stable(feature = "entry_or_default", since = "1.28.0")]
2482     pub fn or_default(self) -> &'a mut V {
2483         match self {
2484             Occupied(entry) => entry.into_mut(),
2485             Vacant(entry) => entry.insert(Default::default()),
2486         }
2487     }
2488 }
2489
2490 impl<'a, K, V> OccupiedEntry<'a, K, V> {
2491     /// Gets a reference to the key in the entry.
2492     ///
2493     /// # Examples
2494     ///
2495     /// ```
2496     /// use std::collections::HashMap;
2497     ///
2498     /// let mut map: HashMap<&str, u32> = HashMap::new();
2499     /// map.entry("poneyland").or_insert(12);
2500     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2501     /// ```
2502     #[inline]
2503     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2504     pub fn key(&self) -> &K {
2505         self.base.key()
2506     }
2507
2508     /// Take the ownership of the key and value from the map.
2509     ///
2510     /// # Examples
2511     ///
2512     /// ```
2513     /// use std::collections::HashMap;
2514     /// use std::collections::hash_map::Entry;
2515     ///
2516     /// let mut map: HashMap<&str, u32> = HashMap::new();
2517     /// map.entry("poneyland").or_insert(12);
2518     ///
2519     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2520     ///     // We delete the entry from the map.
2521     ///     o.remove_entry();
2522     /// }
2523     ///
2524     /// assert_eq!(map.contains_key("poneyland"), false);
2525     /// ```
2526     #[inline]
2527     #[stable(feature = "map_entry_recover_keys2", since = "1.12.0")]
2528     pub fn remove_entry(self) -> (K, V) {
2529         self.base.remove_entry()
2530     }
2531
2532     /// Gets a reference to the value in the entry.
2533     ///
2534     /// # Examples
2535     ///
2536     /// ```
2537     /// use std::collections::HashMap;
2538     /// use std::collections::hash_map::Entry;
2539     ///
2540     /// let mut map: HashMap<&str, u32> = HashMap::new();
2541     /// map.entry("poneyland").or_insert(12);
2542     ///
2543     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2544     ///     assert_eq!(o.get(), &12);
2545     /// }
2546     /// ```
2547     #[inline]
2548     #[stable(feature = "rust1", since = "1.0.0")]
2549     pub fn get(&self) -> &V {
2550         self.base.get()
2551     }
2552
2553     /// Gets a mutable reference to the value in the entry.
2554     ///
2555     /// If you need a reference to the `OccupiedEntry` which may outlive the
2556     /// destruction of the `Entry` value, see [`into_mut`].
2557     ///
2558     /// [`into_mut`]: Self::into_mut
2559     ///
2560     /// # Examples
2561     ///
2562     /// ```
2563     /// use std::collections::HashMap;
2564     /// use std::collections::hash_map::Entry;
2565     ///
2566     /// let mut map: HashMap<&str, u32> = HashMap::new();
2567     /// map.entry("poneyland").or_insert(12);
2568     ///
2569     /// assert_eq!(map["poneyland"], 12);
2570     /// if let Entry::Occupied(mut o) = map.entry("poneyland") {
2571     ///     *o.get_mut() += 10;
2572     ///     assert_eq!(*o.get(), 22);
2573     ///
2574     ///     // We can use the same Entry multiple times.
2575     ///     *o.get_mut() += 2;
2576     /// }
2577     ///
2578     /// assert_eq!(map["poneyland"], 24);
2579     /// ```
2580     #[inline]
2581     #[stable(feature = "rust1", since = "1.0.0")]
2582     pub fn get_mut(&mut self) -> &mut V {
2583         self.base.get_mut()
2584     }
2585
2586     /// Converts the `OccupiedEntry` into a mutable reference to the value in the entry
2587     /// with a lifetime bound to the map itself.
2588     ///
2589     /// If you need multiple references to the `OccupiedEntry`, see [`get_mut`].
2590     ///
2591     /// [`get_mut`]: Self::get_mut
2592     ///
2593     /// # Examples
2594     ///
2595     /// ```
2596     /// use std::collections::HashMap;
2597     /// use std::collections::hash_map::Entry;
2598     ///
2599     /// let mut map: HashMap<&str, u32> = HashMap::new();
2600     /// map.entry("poneyland").or_insert(12);
2601     ///
2602     /// assert_eq!(map["poneyland"], 12);
2603     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2604     ///     *o.into_mut() += 10;
2605     /// }
2606     ///
2607     /// assert_eq!(map["poneyland"], 22);
2608     /// ```
2609     #[inline]
2610     #[stable(feature = "rust1", since = "1.0.0")]
2611     pub fn into_mut(self) -> &'a mut V {
2612         self.base.into_mut()
2613     }
2614
2615     /// Sets the value of the entry, and returns the entry's old value.
2616     ///
2617     /// # Examples
2618     ///
2619     /// ```
2620     /// use std::collections::HashMap;
2621     /// use std::collections::hash_map::Entry;
2622     ///
2623     /// let mut map: HashMap<&str, u32> = HashMap::new();
2624     /// map.entry("poneyland").or_insert(12);
2625     ///
2626     /// if let Entry::Occupied(mut o) = map.entry("poneyland") {
2627     ///     assert_eq!(o.insert(15), 12);
2628     /// }
2629     ///
2630     /// assert_eq!(map["poneyland"], 15);
2631     /// ```
2632     #[inline]
2633     #[stable(feature = "rust1", since = "1.0.0")]
2634     pub fn insert(&mut self, value: V) -> V {
2635         self.base.insert(value)
2636     }
2637
2638     /// Takes the value out of the entry, and returns it.
2639     ///
2640     /// # Examples
2641     ///
2642     /// ```
2643     /// use std::collections::HashMap;
2644     /// use std::collections::hash_map::Entry;
2645     ///
2646     /// let mut map: HashMap<&str, u32> = HashMap::new();
2647     /// map.entry("poneyland").or_insert(12);
2648     ///
2649     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2650     ///     assert_eq!(o.remove(), 12);
2651     /// }
2652     ///
2653     /// assert_eq!(map.contains_key("poneyland"), false);
2654     /// ```
2655     #[inline]
2656     #[stable(feature = "rust1", since = "1.0.0")]
2657     pub fn remove(self) -> V {
2658         self.base.remove()
2659     }
2660
2661     /// Replaces the entry, returning the old key and value. The new key in the hash map will be
2662     /// the key used to create this entry.
2663     ///
2664     /// # Examples
2665     ///
2666     /// ```
2667     /// #![feature(map_entry_replace)]
2668     /// use std::collections::hash_map::{Entry, HashMap};
2669     /// use std::rc::Rc;
2670     ///
2671     /// let mut map: HashMap<Rc<String>, u32> = HashMap::new();
2672     /// map.insert(Rc::new("Stringthing".to_string()), 15);
2673     ///
2674     /// let my_key = Rc::new("Stringthing".to_string());
2675     ///
2676     /// if let Entry::Occupied(entry) = map.entry(my_key) {
2677     ///     // Also replace the key with a handle to our other key.
2678     ///     let (old_key, old_value): (Rc<String>, u32) = entry.replace_entry(16);
2679     /// }
2680     ///
2681     /// ```
2682     #[inline]
2683     #[unstable(feature = "map_entry_replace", issue = "44286")]
2684     pub fn replace_entry(self, value: V) -> (K, V) {
2685         self.base.replace_entry(value)
2686     }
2687
2688     /// Replaces the key in the hash map with the key used to create this entry.
2689     ///
2690     /// # Examples
2691     ///
2692     /// ```
2693     /// #![feature(map_entry_replace)]
2694     /// use std::collections::hash_map::{Entry, HashMap};
2695     /// use std::rc::Rc;
2696     ///
2697     /// let mut map: HashMap<Rc<String>, u32> = HashMap::new();
2698     /// let known_strings: Vec<Rc<String>> = Vec::new();
2699     ///
2700     /// // Initialise known strings, run program, etc.
2701     ///
2702     /// reclaim_memory(&mut map, &known_strings);
2703     ///
2704     /// fn reclaim_memory(map: &mut HashMap<Rc<String>, u32>, known_strings: &[Rc<String>] ) {
2705     ///     for s in known_strings {
2706     ///         if let Entry::Occupied(entry) = map.entry(Rc::clone(s)) {
2707     ///             // Replaces the entry's key with our version of it in `known_strings`.
2708     ///             entry.replace_key();
2709     ///         }
2710     ///     }
2711     /// }
2712     /// ```
2713     #[inline]
2714     #[unstable(feature = "map_entry_replace", issue = "44286")]
2715     pub fn replace_key(self) -> K {
2716         self.base.replace_key()
2717     }
2718 }
2719
2720 impl<'a, K: 'a, V: 'a> VacantEntry<'a, K, V> {
2721     /// Gets a reference to the key that would be used when inserting a value
2722     /// through the `VacantEntry`.
2723     ///
2724     /// # Examples
2725     ///
2726     /// ```
2727     /// use std::collections::HashMap;
2728     ///
2729     /// let mut map: HashMap<&str, u32> = HashMap::new();
2730     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2731     /// ```
2732     #[inline]
2733     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2734     pub fn key(&self) -> &K {
2735         self.base.key()
2736     }
2737
2738     /// Take ownership of the key.
2739     ///
2740     /// # Examples
2741     ///
2742     /// ```
2743     /// use std::collections::HashMap;
2744     /// use std::collections::hash_map::Entry;
2745     ///
2746     /// let mut map: HashMap<&str, u32> = HashMap::new();
2747     ///
2748     /// if let Entry::Vacant(v) = map.entry("poneyland") {
2749     ///     v.into_key();
2750     /// }
2751     /// ```
2752     #[inline]
2753     #[stable(feature = "map_entry_recover_keys2", since = "1.12.0")]
2754     pub fn into_key(self) -> K {
2755         self.base.into_key()
2756     }
2757
2758     /// Sets the value of the entry with the `VacantEntry`'s key,
2759     /// and returns a mutable reference to it.
2760     ///
2761     /// # Examples
2762     ///
2763     /// ```
2764     /// use std::collections::HashMap;
2765     /// use std::collections::hash_map::Entry;
2766     ///
2767     /// let mut map: HashMap<&str, u32> = HashMap::new();
2768     ///
2769     /// if let Entry::Vacant(o) = map.entry("poneyland") {
2770     ///     o.insert(37);
2771     /// }
2772     /// assert_eq!(map["poneyland"], 37);
2773     /// ```
2774     #[inline]
2775     #[stable(feature = "rust1", since = "1.0.0")]
2776     pub fn insert(self, value: V) -> &'a mut V {
2777         self.base.insert(value)
2778     }
2779
2780     /// Sets the value of the entry with the `VacantEntry`'s key,
2781     /// and returns an `OccupiedEntry`.
2782     ///
2783     /// # Examples
2784     ///
2785     /// ```
2786     /// use std::collections::HashMap;
2787     /// use std::collections::hash_map::Entry;
2788     ///
2789     /// let mut map: HashMap<&str, u32> = HashMap::new();
2790     ///
2791     /// if let Entry::Vacant(o) = map.entry("poneyland") {
2792     ///     o.insert(37);
2793     /// }
2794     /// assert_eq!(map["poneyland"], 37);
2795     /// ```
2796     #[inline]
2797     fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V> {
2798         let base = self.base.insert_entry(value);
2799         OccupiedEntry { base }
2800     }
2801 }
2802
2803 #[stable(feature = "rust1", since = "1.0.0")]
2804 impl<K, V, S> FromIterator<(K, V)> for HashMap<K, V, S>
2805 where
2806     K: Eq + Hash,
2807     S: BuildHasher + Default,
2808 {
2809     fn from_iter<T: IntoIterator<Item = (K, V)>>(iter: T) -> HashMap<K, V, S> {
2810         let mut map = HashMap::with_hasher(Default::default());
2811         map.extend(iter);
2812         map
2813     }
2814 }
2815
2816 /// Inserts all new key-values from the iterator and replaces values with existing
2817 /// keys with new values returned from the iterator.
2818 #[stable(feature = "rust1", since = "1.0.0")]
2819 impl<K, V, S> Extend<(K, V)> for HashMap<K, V, S>
2820 where
2821     K: Eq + Hash,
2822     S: BuildHasher,
2823 {
2824     #[inline]
2825     fn extend<T: IntoIterator<Item = (K, V)>>(&mut self, iter: T) {
2826         self.base.extend(iter)
2827     }
2828
2829     #[inline]
2830     fn extend_one(&mut self, (k, v): (K, V)) {
2831         self.base.insert(k, v);
2832     }
2833
2834     #[inline]
2835     fn extend_reserve(&mut self, additional: usize) {
2836         self.base.extend_reserve(additional);
2837     }
2838 }
2839
2840 #[stable(feature = "hash_extend_copy", since = "1.4.0")]
2841 impl<'a, K, V, S> Extend<(&'a K, &'a V)> for HashMap<K, V, S>
2842 where
2843     K: Eq + Hash + Copy,
2844     V: Copy,
2845     S: BuildHasher,
2846 {
2847     #[inline]
2848     fn extend<T: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iter: T) {
2849         self.base.extend(iter)
2850     }
2851
2852     #[inline]
2853     fn extend_one(&mut self, (&k, &v): (&'a K, &'a V)) {
2854         self.base.insert(k, v);
2855     }
2856
2857     #[inline]
2858     fn extend_reserve(&mut self, additional: usize) {
2859         Extend::<(K, V)>::extend_reserve(self, additional)
2860     }
2861 }
2862
2863 /// `RandomState` is the default state for [`HashMap`] types.
2864 ///
2865 /// A particular instance `RandomState` will create the same instances of
2866 /// [`Hasher`], but the hashers created by two different `RandomState`
2867 /// instances are unlikely to produce the same result for the same values.
2868 ///
2869 /// # Examples
2870 ///
2871 /// ```
2872 /// use std::collections::HashMap;
2873 /// use std::collections::hash_map::RandomState;
2874 ///
2875 /// let s = RandomState::new();
2876 /// let mut map = HashMap::with_hasher(s);
2877 /// map.insert(1, 2);
2878 /// ```
2879 #[derive(Clone)]
2880 #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
2881 pub struct RandomState {
2882     k0: u64,
2883     k1: u64,
2884 }
2885
2886 impl RandomState {
2887     /// Constructs a new `RandomState` that is initialized with random keys.
2888     ///
2889     /// # Examples
2890     ///
2891     /// ```
2892     /// use std::collections::hash_map::RandomState;
2893     ///
2894     /// let s = RandomState::new();
2895     /// ```
2896     #[inline]
2897     #[allow(deprecated)]
2898     // rand
2899     #[must_use]
2900     #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
2901     pub fn new() -> RandomState {
2902         // Historically this function did not cache keys from the OS and instead
2903         // simply always called `rand::thread_rng().gen()` twice. In #31356 it
2904         // was discovered, however, that because we re-seed the thread-local RNG
2905         // from the OS periodically that this can cause excessive slowdown when
2906         // many hash maps are created on a thread. To solve this performance
2907         // trap we cache the first set of randomly generated keys per-thread.
2908         //
2909         // Later in #36481 it was discovered that exposing a deterministic
2910         // iteration order allows a form of DOS attack. To counter that we
2911         // increment one of the seeds on every RandomState creation, giving
2912         // every corresponding HashMap a different iteration order.
2913         thread_local!(static KEYS: Cell<(u64, u64)> = {
2914             Cell::new(sys::hashmap_random_keys())
2915         });
2916
2917         KEYS.with(|keys| {
2918             let (k0, k1) = keys.get();
2919             keys.set((k0.wrapping_add(1), k1));
2920             RandomState { k0, k1 }
2921         })
2922     }
2923 }
2924
2925 #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
2926 impl BuildHasher for RandomState {
2927     type Hasher = DefaultHasher;
2928     #[inline]
2929     #[allow(deprecated)]
2930     fn build_hasher(&self) -> DefaultHasher {
2931         DefaultHasher(SipHasher13::new_with_keys(self.k0, self.k1))
2932     }
2933 }
2934
2935 /// The default [`Hasher`] used by [`RandomState`].
2936 ///
2937 /// The internal algorithm is not specified, and so it and its hashes should
2938 /// not be relied upon over releases.
2939 #[stable(feature = "hashmap_default_hasher", since = "1.13.0")]
2940 #[allow(deprecated)]
2941 #[derive(Clone, Debug)]
2942 pub struct DefaultHasher(SipHasher13);
2943
2944 impl DefaultHasher {
2945     /// Creates a new `DefaultHasher`.
2946     ///
2947     /// This hasher is not guaranteed to be the same as all other
2948     /// `DefaultHasher` instances, but is the same as all other `DefaultHasher`
2949     /// instances created through `new` or `default`.
2950     #[stable(feature = "hashmap_default_hasher", since = "1.13.0")]
2951     #[allow(deprecated)]
2952     #[must_use]
2953     pub fn new() -> DefaultHasher {
2954         DefaultHasher(SipHasher13::new_with_keys(0, 0))
2955     }
2956 }
2957
2958 #[stable(feature = "hashmap_default_hasher", since = "1.13.0")]
2959 impl Default for DefaultHasher {
2960     /// Creates a new `DefaultHasher` using [`new`].
2961     /// See its documentation for more.
2962     ///
2963     /// [`new`]: DefaultHasher::new
2964     fn default() -> DefaultHasher {
2965         DefaultHasher::new()
2966     }
2967 }
2968
2969 #[stable(feature = "hashmap_default_hasher", since = "1.13.0")]
2970 impl Hasher for DefaultHasher {
2971     #[inline]
2972     fn write(&mut self, msg: &[u8]) {
2973         self.0.write(msg)
2974     }
2975
2976     #[inline]
2977     fn finish(&self) -> u64 {
2978         self.0.finish()
2979     }
2980 }
2981
2982 #[stable(feature = "hashmap_build_hasher", since = "1.7.0")]
2983 impl Default for RandomState {
2984     /// Constructs a new `RandomState`.
2985     #[inline]
2986     fn default() -> RandomState {
2987         RandomState::new()
2988     }
2989 }
2990
2991 #[stable(feature = "std_debug", since = "1.16.0")]
2992 impl fmt::Debug for RandomState {
2993     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2994         f.debug_struct("RandomState").finish_non_exhaustive()
2995     }
2996 }
2997
2998 #[inline]
2999 fn map_entry<'a, K: 'a, V: 'a>(raw: base::RustcEntry<'a, K, V>) -> Entry<'a, K, V> {
3000     match raw {
3001         base::RustcEntry::Occupied(base) => Entry::Occupied(OccupiedEntry { base }),
3002         base::RustcEntry::Vacant(base) => Entry::Vacant(VacantEntry { base }),
3003     }
3004 }
3005
3006 #[inline]
3007 pub(super) fn map_try_reserve_error(err: hashbrown::TryReserveError) -> TryReserveError {
3008     match err {
3009         hashbrown::TryReserveError::CapacityOverflow => {
3010             TryReserveErrorKind::CapacityOverflow.into()
3011         }
3012         hashbrown::TryReserveError::AllocError { layout } => {
3013             TryReserveErrorKind::AllocError { layout, non_exhaustive: () }.into()
3014         }
3015     }
3016 }
3017
3018 #[inline]
3019 fn map_raw_entry<'a, K: 'a, V: 'a, S: 'a>(
3020     raw: base::RawEntryMut<'a, K, V, S>,
3021 ) -> RawEntryMut<'a, K, V, S> {
3022     match raw {
3023         base::RawEntryMut::Occupied(base) => RawEntryMut::Occupied(RawOccupiedEntryMut { base }),
3024         base::RawEntryMut::Vacant(base) => RawEntryMut::Vacant(RawVacantEntryMut { base }),
3025     }
3026 }
3027
3028 #[allow(dead_code)]
3029 fn assert_covariance() {
3030     fn map_key<'new>(v: HashMap<&'static str, u8>) -> HashMap<&'new str, u8> {
3031         v
3032     }
3033     fn map_val<'new>(v: HashMap<u8, &'static str>) -> HashMap<u8, &'new str> {
3034         v
3035     }
3036     fn iter_key<'a, 'new>(v: Iter<'a, &'static str, u8>) -> Iter<'a, &'new str, u8> {
3037         v
3038     }
3039     fn iter_val<'a, 'new>(v: Iter<'a, u8, &'static str>) -> Iter<'a, u8, &'new str> {
3040         v
3041     }
3042     fn into_iter_key<'new>(v: IntoIter<&'static str, u8>) -> IntoIter<&'new str, u8> {
3043         v
3044     }
3045     fn into_iter_val<'new>(v: IntoIter<u8, &'static str>) -> IntoIter<u8, &'new str> {
3046         v
3047     }
3048     fn keys_key<'a, 'new>(v: Keys<'a, &'static str, u8>) -> Keys<'a, &'new str, u8> {
3049         v
3050     }
3051     fn keys_val<'a, 'new>(v: Keys<'a, u8, &'static str>) -> Keys<'a, u8, &'new str> {
3052         v
3053     }
3054     fn values_key<'a, 'new>(v: Values<'a, &'static str, u8>) -> Values<'a, &'new str, u8> {
3055         v
3056     }
3057     fn values_val<'a, 'new>(v: Values<'a, u8, &'static str>) -> Values<'a, u8, &'new str> {
3058         v
3059     }
3060     fn drain<'new>(
3061         d: Drain<'static, &'static str, &'static str>,
3062     ) -> Drain<'new, &'new str, &'new str> {
3063         d
3064     }
3065 }