]> git.lizzy.rs Git - rust.git/blob - src/liballoc/collections/btree/map.rs
Use intra-doc links in BTreeMap
[rust.git] / src / liballoc / collections / btree / map.rs
1 use core::borrow::Borrow;
2 use core::cmp::Ordering;
3 use core::fmt::Debug;
4 use core::hash::{Hash, Hasher};
5 use core::iter::{FromIterator, FusedIterator, Peekable};
6 use core::marker::PhantomData;
7 use core::mem::{self, ManuallyDrop};
8 use core::ops::Bound::{Excluded, Included, Unbounded};
9 use core::ops::{Index, RangeBounds};
10 use core::{fmt, ptr};
11
12 use super::node::{self, marker, ForceResult::*, Handle, InsertResult::*, NodeRef};
13 use super::search::{self, SearchResult::*};
14 use super::unwrap_unchecked;
15
16 use Entry::*;
17 use UnderflowResult::*;
18
19 /// A map based on a B-Tree.
20 ///
21 /// B-Trees represent a fundamental compromise between cache-efficiency and actually minimizing
22 /// the amount of work performed in a search. In theory, a binary search tree (BST) is the optimal
23 /// choice for a sorted map, as a perfectly balanced BST performs the theoretical minimum amount of
24 /// comparisons necessary to find an element (log<sub>2</sub>n). However, in practice the way this
25 /// is done is *very* inefficient for modern computer architectures. In particular, every element
26 /// is stored in its own individually heap-allocated node. This means that every single insertion
27 /// triggers a heap-allocation, and every single comparison should be a cache-miss. Since these
28 /// are both notably expensive things to do in practice, we are forced to at very least reconsider
29 /// the BST strategy.
30 ///
31 /// A B-Tree instead makes each node contain B-1 to 2B-1 elements in a contiguous array. By doing
32 /// this, we reduce the number of allocations by a factor of B, and improve cache efficiency in
33 /// searches. However, this does mean that searches will have to do *more* comparisons on average.
34 /// The precise number of comparisons depends on the node search strategy used. For optimal cache
35 /// efficiency, one could search the nodes linearly. For optimal comparisons, one could search
36 /// the node using binary search. As a compromise, one could also perform a linear search
37 /// that initially only checks every i<sup>th</sup> element for some choice of i.
38 ///
39 /// Currently, our implementation simply performs naive linear search. This provides excellent
40 /// performance on *small* nodes of elements which are cheap to compare. However in the future we
41 /// would like to further explore choosing the optimal search strategy based on the choice of B,
42 /// and possibly other factors. Using linear search, searching for a random element is expected
43 /// to take O(B * log(n)) comparisons, which is generally worse than a BST. In practice,
44 /// however, performance is excellent.
45 ///
46 /// It is a logic error for a key to be modified in such a way that the key's ordering relative to
47 /// any other key, as determined by the [`Ord`] trait, changes while it is in the map. This is
48 /// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
49 ///
50 /// [`Ord`]: core::cmp::Ord
51 /// [`Cell`]: core::cell::Cell
52 /// [`RefCell`]: core::cell::RefCell
53 ///
54 /// # Examples
55 ///
56 /// ```
57 /// use std::collections::BTreeMap;
58 ///
59 /// // type inference lets us omit an explicit type signature (which
60 /// // would be `BTreeMap<&str, &str>` in this example).
61 /// let mut movie_reviews = BTreeMap::new();
62 ///
63 /// // review some movies.
64 /// movie_reviews.insert("Office Space",       "Deals with real issues in the workplace.");
65 /// movie_reviews.insert("Pulp Fiction",       "Masterpiece.");
66 /// movie_reviews.insert("The Godfather",      "Very enjoyable.");
67 /// movie_reviews.insert("The Blues Brothers", "Eye lyked it a lot.");
68 ///
69 /// // check for a specific one.
70 /// if !movie_reviews.contains_key("Les Misérables") {
71 ///     println!("We've got {} reviews, but Les Misérables ain't one.",
72 ///              movie_reviews.len());
73 /// }
74 ///
75 /// // oops, this review has a lot of spelling mistakes, let's delete it.
76 /// movie_reviews.remove("The Blues Brothers");
77 ///
78 /// // look up the values associated with some keys.
79 /// let to_find = ["Up!", "Office Space"];
80 /// for movie in &to_find {
81 ///     match movie_reviews.get(movie) {
82 ///        Some(review) => println!("{}: {}", movie, review),
83 ///        None => println!("{} is unreviewed.", movie)
84 ///     }
85 /// }
86 ///
87 /// // Look up the value for a key (will panic if the key is not found).
88 /// println!("Movie review: {}", movie_reviews["Office Space"]);
89 ///
90 /// // iterate over everything.
91 /// for (movie, review) in &movie_reviews {
92 ///     println!("{}: \"{}\"", movie, review);
93 /// }
94 /// ```
95 ///
96 /// `BTreeMap` also implements an [`Entry API`](#method.entry), which allows
97 /// for more complex methods of getting, setting, updating and removing keys and
98 /// their values:
99 ///
100 /// ```
101 /// use std::collections::BTreeMap;
102 ///
103 /// // type inference lets us omit an explicit type signature (which
104 /// // would be `BTreeMap<&str, u8>` in this example).
105 /// let mut player_stats = BTreeMap::new();
106 ///
107 /// fn random_stat_buff() -> u8 {
108 ///     // could actually return some random value here - let's just return
109 ///     // some fixed value for now
110 ///     42
111 /// }
112 ///
113 /// // insert a key only if it doesn't already exist
114 /// player_stats.entry("health").or_insert(100);
115 ///
116 /// // insert a key using a function that provides a new value only if it
117 /// // doesn't already exist
118 /// player_stats.entry("defence").or_insert_with(random_stat_buff);
119 ///
120 /// // update a key, guarding against the key possibly not being set
121 /// let stat = player_stats.entry("attack").or_insert(100);
122 /// *stat += random_stat_buff();
123 /// ```
124 #[stable(feature = "rust1", since = "1.0.0")]
125 pub struct BTreeMap<K, V> {
126     root: Option<node::Root<K, V>>,
127     length: usize,
128 }
129
130 #[stable(feature = "btree_drop", since = "1.7.0")]
131 unsafe impl<#[may_dangle] K, #[may_dangle] V> Drop for BTreeMap<K, V> {
132     fn drop(&mut self) {
133         unsafe {
134             drop(ptr::read(self).into_iter());
135         }
136     }
137 }
138
139 #[stable(feature = "rust1", since = "1.0.0")]
140 impl<K: Clone, V: Clone> Clone for BTreeMap<K, V> {
141     fn clone(&self) -> BTreeMap<K, V> {
142         fn clone_subtree<'a, K: Clone, V: Clone>(
143             node: node::NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>,
144         ) -> BTreeMap<K, V>
145         where
146             K: 'a,
147             V: 'a,
148         {
149             match node.force() {
150                 Leaf(leaf) => {
151                     let mut out_tree = BTreeMap { root: Some(node::Root::new_leaf()), length: 0 };
152
153                     {
154                         let root = out_tree.root.as_mut().unwrap(); // unwrap succeeds because we just wrapped
155                         let mut out_node = match root.as_mut().force() {
156                             Leaf(leaf) => leaf,
157                             Internal(_) => unreachable!(),
158                         };
159
160                         let mut in_edge = leaf.first_edge();
161                         while let Ok(kv) = in_edge.right_kv() {
162                             let (k, v) = kv.into_kv();
163                             in_edge = kv.right_edge();
164
165                             out_node.push(k.clone(), v.clone());
166                             out_tree.length += 1;
167                         }
168                     }
169
170                     out_tree
171                 }
172                 Internal(internal) => {
173                     let mut out_tree = clone_subtree(internal.first_edge().descend());
174
175                     {
176                         let out_root = BTreeMap::ensure_is_owned(&mut out_tree.root);
177                         let mut out_node = out_root.push_level();
178                         let mut in_edge = internal.first_edge();
179                         while let Ok(kv) = in_edge.right_kv() {
180                             let (k, v) = kv.into_kv();
181                             in_edge = kv.right_edge();
182
183                             let k = (*k).clone();
184                             let v = (*v).clone();
185                             let subtree = clone_subtree(in_edge.descend());
186
187                             // We can't destructure subtree directly
188                             // because BTreeMap implements Drop
189                             let (subroot, sublength) = unsafe {
190                                 let subtree = ManuallyDrop::new(subtree);
191                                 let root = ptr::read(&subtree.root);
192                                 let length = subtree.length;
193                                 (root, length)
194                             };
195
196                             out_node.push(k, v, subroot.unwrap_or_else(node::Root::new_leaf));
197                             out_tree.length += 1 + sublength;
198                         }
199                     }
200
201                     out_tree
202                 }
203             }
204         }
205
206         if self.is_empty() {
207             // Ideally we'd call `BTreeMap::new` here, but that has the `K:
208             // Ord` constraint, which this method lacks.
209             BTreeMap { root: None, length: 0 }
210         } else {
211             clone_subtree(self.root.as_ref().unwrap().as_ref()) // unwrap succeeds because not empty
212         }
213     }
214 }
215
216 impl<K, Q: ?Sized> super::Recover<Q> for BTreeMap<K, ()>
217 where
218     K: Borrow<Q> + Ord,
219     Q: Ord,
220 {
221     type Key = K;
222
223     fn get(&self, key: &Q) -> Option<&K> {
224         match search::search_tree(self.root.as_ref()?.as_ref(), key) {
225             Found(handle) => Some(handle.into_kv().0),
226             GoDown(_) => None,
227         }
228     }
229
230     fn take(&mut self, key: &Q) -> Option<K> {
231         match search::search_tree(self.root.as_mut()?.as_mut(), key) {
232             Found(handle) => Some(
233                 OccupiedEntry { handle, length: &mut self.length, _marker: PhantomData }
234                     .remove_kv()
235                     .0,
236             ),
237             GoDown(_) => None,
238         }
239     }
240
241     fn replace(&mut self, key: K) -> Option<K> {
242         let root = Self::ensure_is_owned(&mut self.root);
243         match search::search_tree::<marker::Mut<'_>, K, (), K>(root.as_mut(), &key) {
244             Found(handle) => Some(mem::replace(handle.into_kv_mut().0, key)),
245             GoDown(handle) => {
246                 VacantEntry { key, handle, length: &mut self.length, _marker: PhantomData }
247                     .insert(());
248                 None
249             }
250         }
251     }
252 }
253
254 /// An iterator over the entries of a `BTreeMap`.
255 ///
256 /// This `struct` is created by the [`iter`] method on [`BTreeMap`]. See its
257 /// documentation for more.
258 ///
259 /// [`iter`]: BTreeMap::iter
260 #[stable(feature = "rust1", since = "1.0.0")]
261 pub struct Iter<'a, K: 'a, V: 'a> {
262     range: Range<'a, K, V>,
263     length: usize,
264 }
265
266 #[stable(feature = "collection_debug", since = "1.17.0")]
267 impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Iter<'_, K, V> {
268     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
269         f.debug_list().entries(self.clone()).finish()
270     }
271 }
272
273 /// A mutable iterator over the entries of a `BTreeMap`.
274 ///
275 /// This `struct` is created by the [`iter_mut`] method on [`BTreeMap`]. See its
276 /// documentation for more.
277 ///
278 /// [`iter_mut`]: BTreeMap::iter_mut
279 #[stable(feature = "rust1", since = "1.0.0")]
280 #[derive(Debug)]
281 pub struct IterMut<'a, K: 'a, V: 'a> {
282     range: RangeMut<'a, K, V>,
283     length: usize,
284 }
285
286 /// An owning iterator over the entries of a `BTreeMap`.
287 ///
288 /// This `struct` is created by the [`into_iter`] method on [`BTreeMap`]
289 /// (provided by the `IntoIterator` trait). See its documentation for more.
290 ///
291 /// [`into_iter`]: IntoIterator::into_iter
292 #[stable(feature = "rust1", since = "1.0.0")]
293 pub struct IntoIter<K, V> {
294     front: Option<Handle<NodeRef<marker::Owned, K, V, marker::Leaf>, marker::Edge>>,
295     back: Option<Handle<NodeRef<marker::Owned, K, V, marker::Leaf>, marker::Edge>>,
296     length: usize,
297 }
298
299 #[stable(feature = "collection_debug", since = "1.17.0")]
300 impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoIter<K, V> {
301     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
302         let range = Range {
303             front: self.front.as_ref().map(|f| f.reborrow()),
304             back: self.back.as_ref().map(|b| b.reborrow()),
305         };
306         f.debug_list().entries(range).finish()
307     }
308 }
309
310 /// An iterator over the keys of a `BTreeMap`.
311 ///
312 /// This `struct` is created by the [`keys`] method on [`BTreeMap`]. See its
313 /// documentation for more.
314 ///
315 /// [`keys`]: BTreeMap::keys
316 #[stable(feature = "rust1", since = "1.0.0")]
317 pub struct Keys<'a, K: 'a, V: 'a> {
318     inner: Iter<'a, K, V>,
319 }
320
321 #[stable(feature = "collection_debug", since = "1.17.0")]
322 impl<K: fmt::Debug, V> fmt::Debug for Keys<'_, K, V> {
323     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
324         f.debug_list().entries(self.clone()).finish()
325     }
326 }
327
328 /// An iterator over the values of a `BTreeMap`.
329 ///
330 /// This `struct` is created by the [`values`] method on [`BTreeMap`]. See its
331 /// documentation for more.
332 ///
333 /// [`values`]: BTreeMap::values
334 #[stable(feature = "rust1", since = "1.0.0")]
335 pub struct Values<'a, K: 'a, V: 'a> {
336     inner: Iter<'a, K, V>,
337 }
338
339 #[stable(feature = "collection_debug", since = "1.17.0")]
340 impl<K, V: fmt::Debug> fmt::Debug for Values<'_, K, V> {
341     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
342         f.debug_list().entries(self.clone()).finish()
343     }
344 }
345
346 /// A mutable iterator over the values of a `BTreeMap`.
347 ///
348 /// This `struct` is created by the [`values_mut`] method on [`BTreeMap`]. See its
349 /// documentation for more.
350 ///
351 /// [`values_mut`]: BTreeMap::values_mut
352 #[stable(feature = "map_values_mut", since = "1.10.0")]
353 #[derive(Debug)]
354 pub struct ValuesMut<'a, K: 'a, V: 'a> {
355     inner: IterMut<'a, K, V>,
356 }
357
358 /// An iterator over a sub-range of entries in a `BTreeMap`.
359 ///
360 /// This `struct` is created by the [`range`] method on [`BTreeMap`]. See its
361 /// documentation for more.
362 ///
363 /// [`range`]: BTreeMap::range
364 #[stable(feature = "btree_range", since = "1.17.0")]
365 pub struct Range<'a, K: 'a, V: 'a> {
366     front: Option<Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>>,
367     back: Option<Handle<NodeRef<marker::Immut<'a>, K, V, marker::Leaf>, marker::Edge>>,
368 }
369
370 #[stable(feature = "collection_debug", since = "1.17.0")]
371 impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Range<'_, K, V> {
372     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
373         f.debug_list().entries(self.clone()).finish()
374     }
375 }
376
377 /// A mutable iterator over a sub-range of entries in a `BTreeMap`.
378 ///
379 /// This `struct` is created by the [`range_mut`] method on [`BTreeMap`]. See its
380 /// documentation for more.
381 ///
382 /// [`range_mut`]: BTreeMap::range_mut
383 #[stable(feature = "btree_range", since = "1.17.0")]
384 pub struct RangeMut<'a, K: 'a, V: 'a> {
385     front: Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>>,
386     back: Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>>,
387
388     // Be invariant in `K` and `V`
389     _marker: PhantomData<&'a mut (K, V)>,
390 }
391
392 #[stable(feature = "collection_debug", since = "1.17.0")]
393 impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for RangeMut<'_, K, V> {
394     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
395         let range = Range {
396             front: self.front.as_ref().map(|f| f.reborrow()),
397             back: self.back.as_ref().map(|b| b.reborrow()),
398         };
399         f.debug_list().entries(range).finish()
400     }
401 }
402
403 /// A view into a single entry in a map, which may either be vacant or occupied.
404 ///
405 /// This `enum` is constructed from the [`entry`] method on [`BTreeMap`].
406 ///
407 /// [`entry`]: BTreeMap::entry
408 #[stable(feature = "rust1", since = "1.0.0")]
409 pub enum Entry<'a, K: 'a, V: 'a> {
410     /// A vacant entry.
411     #[stable(feature = "rust1", since = "1.0.0")]
412     Vacant(#[stable(feature = "rust1", since = "1.0.0")] VacantEntry<'a, K, V>),
413
414     /// An occupied entry.
415     #[stable(feature = "rust1", since = "1.0.0")]
416     Occupied(#[stable(feature = "rust1", since = "1.0.0")] OccupiedEntry<'a, K, V>),
417 }
418
419 #[stable(feature = "debug_btree_map", since = "1.12.0")]
420 impl<K: Debug + Ord, V: Debug> Debug for Entry<'_, K, V> {
421     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
422         match *self {
423             Vacant(ref v) => f.debug_tuple("Entry").field(v).finish(),
424             Occupied(ref o) => f.debug_tuple("Entry").field(o).finish(),
425         }
426     }
427 }
428
429 /// A view into a vacant entry in a `BTreeMap`.
430 /// It is part of the [`Entry`] enum.
431 ///
432 /// [`Entry`]: enum.Entry.html
433 #[stable(feature = "rust1", since = "1.0.0")]
434 pub struct VacantEntry<'a, K: 'a, V: 'a> {
435     key: K,
436     handle: Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>,
437     length: &'a mut usize,
438
439     // Be invariant in `K` and `V`
440     _marker: PhantomData<&'a mut (K, V)>,
441 }
442
443 #[stable(feature = "debug_btree_map", since = "1.12.0")]
444 impl<K: Debug + Ord, V> Debug for VacantEntry<'_, K, V> {
445     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
446         f.debug_tuple("VacantEntry").field(self.key()).finish()
447     }
448 }
449
450 /// A view into an occupied entry in a `BTreeMap`.
451 /// It is part of the [`Entry`] enum.
452 ///
453 /// [`Entry`]: enum.Entry.html
454 #[stable(feature = "rust1", since = "1.0.0")]
455 pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
456     handle: Handle<NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal>, marker::KV>,
457
458     length: &'a mut usize,
459
460     // Be invariant in `K` and `V`
461     _marker: PhantomData<&'a mut (K, V)>,
462 }
463
464 #[stable(feature = "debug_btree_map", since = "1.12.0")]
465 impl<K: Debug + Ord, V: Debug> Debug for OccupiedEntry<'_, K, V> {
466     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
467         f.debug_struct("OccupiedEntry").field("key", self.key()).field("value", self.get()).finish()
468     }
469 }
470
471 // An iterator for merging two sorted sequences into one
472 struct MergeIter<K, V, I: Iterator<Item = (K, V)>> {
473     left: Peekable<I>,
474     right: Peekable<I>,
475 }
476
477 impl<K: Ord, V> BTreeMap<K, V> {
478     /// Makes a new empty BTreeMap.
479     ///
480     /// Does not allocate anything on its own.
481     ///
482     /// # Examples
483     ///
484     /// Basic usage:
485     ///
486     /// ```
487     /// use std::collections::BTreeMap;
488     ///
489     /// let mut map = BTreeMap::new();
490     ///
491     /// // entries can now be inserted into the empty map
492     /// map.insert(1, "a");
493     /// ```
494     #[stable(feature = "rust1", since = "1.0.0")]
495     #[rustc_const_unstable(feature = "const_btree_new", issue = "71835")]
496     pub const fn new() -> BTreeMap<K, V> {
497         BTreeMap { root: None, length: 0 }
498     }
499
500     /// Clears the map, removing all elements.
501     ///
502     /// # Examples
503     ///
504     /// Basic usage:
505     ///
506     /// ```
507     /// use std::collections::BTreeMap;
508     ///
509     /// let mut a = BTreeMap::new();
510     /// a.insert(1, "a");
511     /// a.clear();
512     /// assert!(a.is_empty());
513     /// ```
514     #[stable(feature = "rust1", since = "1.0.0")]
515     pub fn clear(&mut self) {
516         *self = BTreeMap::new();
517     }
518
519     /// Returns a reference to the value corresponding to the key.
520     ///
521     /// The key may be any borrowed form of the map's key type, but the ordering
522     /// on the borrowed form *must* match the ordering on the key type.
523     ///
524     /// # Examples
525     ///
526     /// Basic usage:
527     ///
528     /// ```
529     /// use std::collections::BTreeMap;
530     ///
531     /// let mut map = BTreeMap::new();
532     /// map.insert(1, "a");
533     /// assert_eq!(map.get(&1), Some(&"a"));
534     /// assert_eq!(map.get(&2), None);
535     /// ```
536     #[stable(feature = "rust1", since = "1.0.0")]
537     pub fn get<Q: ?Sized>(&self, key: &Q) -> Option<&V>
538     where
539         K: Borrow<Q>,
540         Q: Ord,
541     {
542         match search::search_tree(self.root.as_ref()?.as_ref(), key) {
543             Found(handle) => Some(handle.into_kv().1),
544             GoDown(_) => None,
545         }
546     }
547
548     /// Returns the key-value pair corresponding to the supplied key.
549     ///
550     /// The supplied key may be any borrowed form of the map's key type, but the ordering
551     /// on the borrowed form *must* match the ordering on the key type.
552     ///
553     /// # Examples
554     ///
555     /// ```
556     /// use std::collections::BTreeMap;
557     ///
558     /// let mut map = BTreeMap::new();
559     /// map.insert(1, "a");
560     /// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
561     /// assert_eq!(map.get_key_value(&2), None);
562     /// ```
563     #[stable(feature = "map_get_key_value", since = "1.40.0")]
564     pub fn get_key_value<Q: ?Sized>(&self, k: &Q) -> Option<(&K, &V)>
565     where
566         K: Borrow<Q>,
567         Q: Ord,
568     {
569         match search::search_tree(self.root.as_ref()?.as_ref(), k) {
570             Found(handle) => Some(handle.into_kv()),
571             GoDown(_) => None,
572         }
573     }
574
575     /// Returns the first key-value pair in the map.
576     /// The key in this pair is the minimum key in the map.
577     ///
578     /// # Examples
579     ///
580     /// Basic usage:
581     ///
582     /// ```
583     /// #![feature(map_first_last)]
584     /// use std::collections::BTreeMap;
585     ///
586     /// let mut map = BTreeMap::new();
587     /// assert_eq!(map.first_key_value(), None);
588     /// map.insert(1, "b");
589     /// map.insert(2, "a");
590     /// assert_eq!(map.first_key_value(), Some((&1, &"b")));
591     /// ```
592     #[unstable(feature = "map_first_last", issue = "62924")]
593     pub fn first_key_value(&self) -> Option<(&K, &V)> {
594         let front = self.root.as_ref()?.as_ref().first_leaf_edge();
595         front.right_kv().ok().map(Handle::into_kv)
596     }
597
598     /// Returns the first entry in the map for in-place manipulation.
599     /// The key of this entry is the minimum key in the map.
600     ///
601     /// # Examples
602     ///
603     /// ```
604     /// #![feature(map_first_last)]
605     /// use std::collections::BTreeMap;
606     ///
607     /// let mut map = BTreeMap::new();
608     /// map.insert(1, "a");
609     /// map.insert(2, "b");
610     /// if let Some(mut entry) = map.first_entry() {
611     ///     if *entry.key() > 0 {
612     ///         entry.insert("first");
613     ///     }
614     /// }
615     /// assert_eq!(*map.get(&1).unwrap(), "first");
616     /// assert_eq!(*map.get(&2).unwrap(), "b");
617     /// ```
618     #[unstable(feature = "map_first_last", issue = "62924")]
619     pub fn first_entry(&mut self) -> Option<OccupiedEntry<'_, K, V>> {
620         let front = self.root.as_mut()?.as_mut().first_leaf_edge();
621         let kv = front.right_kv().ok()?;
622         Some(OccupiedEntry {
623             handle: kv.forget_node_type(),
624             length: &mut self.length,
625             _marker: PhantomData,
626         })
627     }
628
629     /// Removes and returns the first element in the map.
630     /// The key of this element is the minimum key that was in the map.
631     ///
632     /// # Examples
633     ///
634     /// Draining elements in ascending order, while keeping a usable map each iteration.
635     ///
636     /// ```
637     /// #![feature(map_first_last)]
638     /// use std::collections::BTreeMap;
639     ///
640     /// let mut map = BTreeMap::new();
641     /// map.insert(1, "a");
642     /// map.insert(2, "b");
643     /// while let Some((key, _val)) = map.pop_first() {
644     ///     assert!(map.iter().all(|(k, _v)| *k > key));
645     /// }
646     /// assert!(map.is_empty());
647     /// ```
648     #[unstable(feature = "map_first_last", issue = "62924")]
649     pub fn pop_first(&mut self) -> Option<(K, V)> {
650         self.first_entry().map(|entry| entry.remove_entry())
651     }
652
653     /// Returns the last key-value pair in the map.
654     /// The key in this pair is the maximum key in the map.
655     ///
656     /// # Examples
657     ///
658     /// Basic usage:
659     ///
660     /// ```
661     /// #![feature(map_first_last)]
662     /// use std::collections::BTreeMap;
663     ///
664     /// let mut map = BTreeMap::new();
665     /// map.insert(1, "b");
666     /// map.insert(2, "a");
667     /// assert_eq!(map.last_key_value(), Some((&2, &"a")));
668     /// ```
669     #[unstable(feature = "map_first_last", issue = "62924")]
670     pub fn last_key_value(&self) -> Option<(&K, &V)> {
671         let back = self.root.as_ref()?.as_ref().last_leaf_edge();
672         back.left_kv().ok().map(Handle::into_kv)
673     }
674
675     /// Returns the last entry in the map for in-place manipulation.
676     /// The key of this entry is the maximum key in the map.
677     ///
678     /// # Examples
679     ///
680     /// ```
681     /// #![feature(map_first_last)]
682     /// use std::collections::BTreeMap;
683     ///
684     /// let mut map = BTreeMap::new();
685     /// map.insert(1, "a");
686     /// map.insert(2, "b");
687     /// if let Some(mut entry) = map.last_entry() {
688     ///     if *entry.key() > 0 {
689     ///         entry.insert("last");
690     ///     }
691     /// }
692     /// assert_eq!(*map.get(&1).unwrap(), "a");
693     /// assert_eq!(*map.get(&2).unwrap(), "last");
694     /// ```
695     #[unstable(feature = "map_first_last", issue = "62924")]
696     pub fn last_entry(&mut self) -> Option<OccupiedEntry<'_, K, V>> {
697         let back = self.root.as_mut()?.as_mut().last_leaf_edge();
698         let kv = back.left_kv().ok()?;
699         Some(OccupiedEntry {
700             handle: kv.forget_node_type(),
701             length: &mut self.length,
702             _marker: PhantomData,
703         })
704     }
705
706     /// Removes and returns the last element in the map.
707     /// The key of this element is the maximum key that was in the map.
708     ///
709     /// # Examples
710     ///
711     /// Draining elements in descending order, while keeping a usable map each iteration.
712     ///
713     /// ```
714     /// #![feature(map_first_last)]
715     /// use std::collections::BTreeMap;
716     ///
717     /// let mut map = BTreeMap::new();
718     /// map.insert(1, "a");
719     /// map.insert(2, "b");
720     /// while let Some((key, _val)) = map.pop_last() {
721     ///     assert!(map.iter().all(|(k, _v)| *k < key));
722     /// }
723     /// assert!(map.is_empty());
724     /// ```
725     #[unstable(feature = "map_first_last", issue = "62924")]
726     pub fn pop_last(&mut self) -> Option<(K, V)> {
727         self.last_entry().map(|entry| entry.remove_entry())
728     }
729
730     /// Returns `true` if the map contains a value for the specified key.
731     ///
732     /// The key may be any borrowed form of the map's key type, but the ordering
733     /// on the borrowed form *must* match the ordering on the key type.
734     ///
735     /// # Examples
736     ///
737     /// Basic usage:
738     ///
739     /// ```
740     /// use std::collections::BTreeMap;
741     ///
742     /// let mut map = BTreeMap::new();
743     /// map.insert(1, "a");
744     /// assert_eq!(map.contains_key(&1), true);
745     /// assert_eq!(map.contains_key(&2), false);
746     /// ```
747     #[stable(feature = "rust1", since = "1.0.0")]
748     pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool
749     where
750         K: Borrow<Q>,
751         Q: Ord,
752     {
753         self.get(key).is_some()
754     }
755
756     /// Returns a mutable reference to the value corresponding to the key.
757     ///
758     /// The key may be any borrowed form of the map's key type, but the ordering
759     /// on the borrowed form *must* match the ordering on the key type.
760     ///
761     /// # Examples
762     ///
763     /// Basic usage:
764     ///
765     /// ```
766     /// use std::collections::BTreeMap;
767     ///
768     /// let mut map = BTreeMap::new();
769     /// map.insert(1, "a");
770     /// if let Some(x) = map.get_mut(&1) {
771     ///     *x = "b";
772     /// }
773     /// assert_eq!(map[&1], "b");
774     /// ```
775     // See `get` for implementation notes, this is basically a copy-paste with mut's added
776     #[stable(feature = "rust1", since = "1.0.0")]
777     pub fn get_mut<Q: ?Sized>(&mut self, key: &Q) -> Option<&mut V>
778     where
779         K: Borrow<Q>,
780         Q: Ord,
781     {
782         match search::search_tree(self.root.as_mut()?.as_mut(), key) {
783             Found(handle) => Some(handle.into_kv_mut().1),
784             GoDown(_) => None,
785         }
786     }
787
788     /// Inserts a key-value pair into the map.
789     ///
790     /// If the map did not have this key present, `None` is returned.
791     ///
792     /// If the map did have this key present, the value is updated, and the old
793     /// value is returned. The key is not updated, though; this matters for
794     /// types that can be `==` without being identical. See the [module-level
795     /// documentation] for more.
796     ///
797     /// [module-level documentation]: index.html#insert-and-complex-keys
798     ///
799     /// # Examples
800     ///
801     /// Basic usage:
802     ///
803     /// ```
804     /// use std::collections::BTreeMap;
805     ///
806     /// let mut map = BTreeMap::new();
807     /// assert_eq!(map.insert(37, "a"), None);
808     /// assert_eq!(map.is_empty(), false);
809     ///
810     /// map.insert(37, "b");
811     /// assert_eq!(map.insert(37, "c"), Some("b"));
812     /// assert_eq!(map[&37], "c");
813     /// ```
814     #[stable(feature = "rust1", since = "1.0.0")]
815     pub fn insert(&mut self, key: K, value: V) -> Option<V> {
816         match self.entry(key) {
817             Occupied(mut entry) => Some(entry.insert(value)),
818             Vacant(entry) => {
819                 entry.insert(value);
820                 None
821             }
822         }
823     }
824
825     /// Removes a key from the map, returning the value at the key if the key
826     /// was previously in the map.
827     ///
828     /// The key may be any borrowed form of the map's key type, but the ordering
829     /// on the borrowed form *must* match the ordering on the key type.
830     ///
831     /// # Examples
832     ///
833     /// Basic usage:
834     ///
835     /// ```
836     /// use std::collections::BTreeMap;
837     ///
838     /// let mut map = BTreeMap::new();
839     /// map.insert(1, "a");
840     /// assert_eq!(map.remove(&1), Some("a"));
841     /// assert_eq!(map.remove(&1), None);
842     /// ```
843     #[stable(feature = "rust1", since = "1.0.0")]
844     pub fn remove<Q: ?Sized>(&mut self, key: &Q) -> Option<V>
845     where
846         K: Borrow<Q>,
847         Q: Ord,
848     {
849         self.remove_entry(key).map(|(_, v)| v)
850     }
851
852     /// Removes a key from the map, returning the stored key and value if the key
853     /// was previously in the map.
854     ///
855     /// The key may be any borrowed form of the map's key type, but the ordering
856     /// on the borrowed form *must* match the ordering on the key type.
857     ///
858     /// # Examples
859     ///
860     /// Basic usage:
861     ///
862     /// ```
863     /// use std::collections::BTreeMap;
864     ///
865     /// let mut map = BTreeMap::new();
866     /// map.insert(1, "a");
867     /// assert_eq!(map.remove_entry(&1), Some((1, "a")));
868     /// assert_eq!(map.remove_entry(&1), None);
869     /// ```
870     #[stable(feature = "btreemap_remove_entry", since = "1.45.0")]
871     pub fn remove_entry<Q: ?Sized>(&mut self, key: &Q) -> Option<(K, V)>
872     where
873         K: Borrow<Q>,
874         Q: Ord,
875     {
876         match search::search_tree(self.root.as_mut()?.as_mut(), key) {
877             Found(handle) => Some(
878                 OccupiedEntry { handle, length: &mut self.length, _marker: PhantomData }
879                     .remove_entry(),
880             ),
881             GoDown(_) => None,
882         }
883     }
884
885     /// Moves all elements from `other` into `Self`, leaving `other` empty.
886     ///
887     /// # Examples
888     ///
889     /// ```
890     /// use std::collections::BTreeMap;
891     ///
892     /// let mut a = BTreeMap::new();
893     /// a.insert(1, "a");
894     /// a.insert(2, "b");
895     /// a.insert(3, "c");
896     ///
897     /// let mut b = BTreeMap::new();
898     /// b.insert(3, "d");
899     /// b.insert(4, "e");
900     /// b.insert(5, "f");
901     ///
902     /// a.append(&mut b);
903     ///
904     /// assert_eq!(a.len(), 5);
905     /// assert_eq!(b.len(), 0);
906     ///
907     /// assert_eq!(a[&1], "a");
908     /// assert_eq!(a[&2], "b");
909     /// assert_eq!(a[&3], "d");
910     /// assert_eq!(a[&4], "e");
911     /// assert_eq!(a[&5], "f");
912     /// ```
913     #[stable(feature = "btree_append", since = "1.11.0")]
914     pub fn append(&mut self, other: &mut Self) {
915         // Do we have to append anything at all?
916         if other.is_empty() {
917             return;
918         }
919
920         // We can just swap `self` and `other` if `self` is empty.
921         if self.is_empty() {
922             mem::swap(self, other);
923             return;
924         }
925
926         // First, we merge `self` and `other` into a sorted sequence in linear time.
927         let self_iter = mem::take(self).into_iter();
928         let other_iter = mem::take(other).into_iter();
929         let iter = MergeIter { left: self_iter.peekable(), right: other_iter.peekable() };
930
931         // Second, we build a tree from the sorted sequence in linear time.
932         self.from_sorted_iter(iter);
933     }
934
935     /// Constructs a double-ended iterator over a sub-range of elements in the map.
936     /// The simplest way is to use the range syntax `min..max`, thus `range(min..max)` will
937     /// yield elements from min (inclusive) to max (exclusive).
938     /// The range may also be entered as `(Bound<T>, Bound<T>)`, so for example
939     /// `range((Excluded(4), Included(10)))` will yield a left-exclusive, right-inclusive
940     /// range from 4 to 10.
941     ///
942     /// # Panics
943     ///
944     /// Panics if range `start > end`.
945     /// Panics if range `start == end` and both bounds are `Excluded`.
946     ///
947     /// # Examples
948     ///
949     /// Basic usage:
950     ///
951     /// ```
952     /// use std::collections::BTreeMap;
953     /// use std::ops::Bound::Included;
954     ///
955     /// let mut map = BTreeMap::new();
956     /// map.insert(3, "a");
957     /// map.insert(5, "b");
958     /// map.insert(8, "c");
959     /// for (&key, &value) in map.range((Included(&4), Included(&8))) {
960     ///     println!("{}: {}", key, value);
961     /// }
962     /// assert_eq!(Some((&5, &"b")), map.range(4..).next());
963     /// ```
964     #[stable(feature = "btree_range", since = "1.17.0")]
965     pub fn range<T: ?Sized, R>(&self, range: R) -> Range<'_, K, V>
966     where
967         T: Ord,
968         K: Borrow<T>,
969         R: RangeBounds<T>,
970     {
971         if let Some(root) = &self.root {
972             let (f, b) = range_search(root.as_ref(), range);
973
974             Range { front: Some(f), back: Some(b) }
975         } else {
976             Range { front: None, back: None }
977         }
978     }
979
980     /// Constructs a mutable double-ended iterator over a sub-range of elements in the map.
981     /// The simplest way is to use the range syntax `min..max`, thus `range(min..max)` will
982     /// yield elements from min (inclusive) to max (exclusive).
983     /// The range may also be entered as `(Bound<T>, Bound<T>)`, so for example
984     /// `range((Excluded(4), Included(10)))` will yield a left-exclusive, right-inclusive
985     /// range from 4 to 10.
986     ///
987     /// # Panics
988     ///
989     /// Panics if range `start > end`.
990     /// Panics if range `start == end` and both bounds are `Excluded`.
991     ///
992     /// # Examples
993     ///
994     /// Basic usage:
995     ///
996     /// ```
997     /// use std::collections::BTreeMap;
998     ///
999     /// let mut map: BTreeMap<&str, i32> = ["Alice", "Bob", "Carol", "Cheryl"]
1000     ///     .iter()
1001     ///     .map(|&s| (s, 0))
1002     ///     .collect();
1003     /// for (_, balance) in map.range_mut("B".."Cheryl") {
1004     ///     *balance += 100;
1005     /// }
1006     /// for (name, balance) in &map {
1007     ///     println!("{} => {}", name, balance);
1008     /// }
1009     /// ```
1010     #[stable(feature = "btree_range", since = "1.17.0")]
1011     pub fn range_mut<T: ?Sized, R>(&mut self, range: R) -> RangeMut<'_, K, V>
1012     where
1013         T: Ord,
1014         K: Borrow<T>,
1015         R: RangeBounds<T>,
1016     {
1017         if let Some(root) = &mut self.root {
1018             let (f, b) = range_search(root.as_mut(), range);
1019
1020             RangeMut { front: Some(f), back: Some(b), _marker: PhantomData }
1021         } else {
1022             RangeMut { front: None, back: None, _marker: PhantomData }
1023         }
1024     }
1025
1026     /// Gets the given key's corresponding entry in the map for in-place manipulation.
1027     ///
1028     /// # Examples
1029     ///
1030     /// Basic usage:
1031     ///
1032     /// ```
1033     /// use std::collections::BTreeMap;
1034     ///
1035     /// let mut count: BTreeMap<&str, usize> = BTreeMap::new();
1036     ///
1037     /// // count the number of occurrences of letters in the vec
1038     /// for x in vec!["a","b","a","c","a","b"] {
1039     ///     *count.entry(x).or_insert(0) += 1;
1040     /// }
1041     ///
1042     /// assert_eq!(count["a"], 3);
1043     /// ```
1044     #[stable(feature = "rust1", since = "1.0.0")]
1045     pub fn entry(&mut self, key: K) -> Entry<'_, K, V> {
1046         // FIXME(@porglezomp) Avoid allocating if we don't insert
1047         let root = Self::ensure_is_owned(&mut self.root);
1048         match search::search_tree(root.as_mut(), &key) {
1049             Found(handle) => {
1050                 Occupied(OccupiedEntry { handle, length: &mut self.length, _marker: PhantomData })
1051             }
1052             GoDown(handle) => {
1053                 Vacant(VacantEntry { key, handle, length: &mut self.length, _marker: PhantomData })
1054             }
1055         }
1056     }
1057
1058     fn from_sorted_iter<I: Iterator<Item = (K, V)>>(&mut self, iter: I) {
1059         let root = Self::ensure_is_owned(&mut self.root);
1060         let mut cur_node = root.as_mut().last_leaf_edge().into_node();
1061         // Iterate through all key-value pairs, pushing them into nodes at the right level.
1062         for (key, value) in iter {
1063             // Try to push key-value pair into the current leaf node.
1064             if cur_node.len() < node::CAPACITY {
1065                 cur_node.push(key, value);
1066             } else {
1067                 // No space left, go up and push there.
1068                 let mut open_node;
1069                 let mut test_node = cur_node.forget_type();
1070                 loop {
1071                     match test_node.ascend() {
1072                         Ok(parent) => {
1073                             let parent = parent.into_node();
1074                             if parent.len() < node::CAPACITY {
1075                                 // Found a node with space left, push here.
1076                                 open_node = parent;
1077                                 break;
1078                             } else {
1079                                 // Go up again.
1080                                 test_node = parent.forget_type();
1081                             }
1082                         }
1083                         Err(node) => {
1084                             // We are at the top, create a new root node and push there.
1085                             open_node = node.into_root_mut().push_level();
1086                             break;
1087                         }
1088                     }
1089                 }
1090
1091                 // Push key-value pair and new right subtree.
1092                 let tree_height = open_node.height() - 1;
1093                 let mut right_tree = node::Root::new_leaf();
1094                 for _ in 0..tree_height {
1095                     right_tree.push_level();
1096                 }
1097                 open_node.push(key, value, right_tree);
1098
1099                 // Go down to the right-most leaf again.
1100                 cur_node = open_node.forget_type().last_leaf_edge().into_node();
1101             }
1102
1103             self.length += 1;
1104         }
1105         Self::fix_right_edge(root)
1106     }
1107
1108     fn fix_right_edge(root: &mut node::Root<K, V>) {
1109         // Handle underfull nodes, start from the top.
1110         let mut cur_node = root.as_mut();
1111         while let Internal(internal) = cur_node.force() {
1112             // Check if right-most child is underfull.
1113             let mut last_edge = internal.last_edge();
1114             let right_child_len = last_edge.reborrow().descend().len();
1115             if right_child_len < node::MIN_LEN {
1116                 // We need to steal.
1117                 let mut last_kv = match last_edge.left_kv() {
1118                     Ok(left) => left,
1119                     Err(_) => unreachable!(),
1120                 };
1121                 last_kv.bulk_steal_left(node::MIN_LEN - right_child_len);
1122                 last_edge = last_kv.right_edge();
1123             }
1124
1125             // Go further down.
1126             cur_node = last_edge.descend();
1127         }
1128     }
1129
1130     /// Splits the collection into two at the given key. Returns everything after the given key,
1131     /// including the key.
1132     ///
1133     /// # Examples
1134     ///
1135     /// Basic usage:
1136     ///
1137     /// ```
1138     /// use std::collections::BTreeMap;
1139     ///
1140     /// let mut a = BTreeMap::new();
1141     /// a.insert(1, "a");
1142     /// a.insert(2, "b");
1143     /// a.insert(3, "c");
1144     /// a.insert(17, "d");
1145     /// a.insert(41, "e");
1146     ///
1147     /// let b = a.split_off(&3);
1148     ///
1149     /// assert_eq!(a.len(), 2);
1150     /// assert_eq!(b.len(), 3);
1151     ///
1152     /// assert_eq!(a[&1], "a");
1153     /// assert_eq!(a[&2], "b");
1154     ///
1155     /// assert_eq!(b[&3], "c");
1156     /// assert_eq!(b[&17], "d");
1157     /// assert_eq!(b[&41], "e");
1158     /// ```
1159     #[stable(feature = "btree_split_off", since = "1.11.0")]
1160     pub fn split_off<Q: ?Sized + Ord>(&mut self, key: &Q) -> Self
1161     where
1162         K: Borrow<Q>,
1163     {
1164         if self.is_empty() {
1165             return Self::new();
1166         }
1167
1168         let total_num = self.len();
1169         let left_root = self.root.as_mut().unwrap(); // unwrap succeeds because not empty
1170
1171         let mut right = Self::new();
1172         let right_root = Self::ensure_is_owned(&mut right.root);
1173         for _ in 0..left_root.height() {
1174             right_root.push_level();
1175         }
1176
1177         {
1178             let mut left_node = left_root.as_mut();
1179             let mut right_node = right_root.as_mut();
1180
1181             loop {
1182                 let mut split_edge = match search::search_node(left_node, key) {
1183                     // key is going to the right tree
1184                     Found(handle) => handle.left_edge(),
1185                     GoDown(handle) => handle,
1186                 };
1187
1188                 split_edge.move_suffix(&mut right_node);
1189
1190                 match (split_edge.force(), right_node.force()) {
1191                     (Internal(edge), Internal(node)) => {
1192                         left_node = edge.descend();
1193                         right_node = node.first_edge().descend();
1194                     }
1195                     (Leaf(_), Leaf(_)) => {
1196                         break;
1197                     }
1198                     _ => {
1199                         unreachable!();
1200                     }
1201                 }
1202             }
1203         }
1204
1205         left_root.fix_right_border();
1206         right_root.fix_left_border();
1207
1208         if left_root.height() < right_root.height() {
1209             self.recalc_length();
1210             right.length = total_num - self.len();
1211         } else {
1212             right.recalc_length();
1213             self.length = total_num - right.len();
1214         }
1215
1216         right
1217     }
1218
1219     /// Creates an iterator which uses a closure to determine if an element should be removed.
1220     ///
1221     /// If the closure returns true, the element is removed from the map and yielded.
1222     /// If the closure returns false, or panics, the element remains in the map and will not be
1223     /// yielded.
1224     ///
1225     /// Note that `drain_filter` lets you mutate every value in the filter closure, regardless of
1226     /// whether you choose to keep or remove it.
1227     ///
1228     /// If the iterator is only partially consumed or not consumed at all, each of the remaining
1229     /// elements will still be subjected to the closure and removed and dropped if it returns true.
1230     ///
1231     /// It is unspecified how many more elements will be subjected to the closure
1232     /// if a panic occurs in the closure, or a panic occurs while dropping an element,
1233     /// or if the `DrainFilter` value is leaked.
1234     ///
1235     /// # Examples
1236     ///
1237     /// Splitting a map into even and odd keys, reusing the original map:
1238     ///
1239     /// ```
1240     /// #![feature(btree_drain_filter)]
1241     /// use std::collections::BTreeMap;
1242     ///
1243     /// let mut map: BTreeMap<i32, i32> = (0..8).map(|x| (x, x)).collect();
1244     /// let evens: BTreeMap<_, _> = map.drain_filter(|k, _v| k % 2 == 0).collect();
1245     /// let odds = map;
1246     /// assert_eq!(evens.keys().copied().collect::<Vec<_>>(), vec![0, 2, 4, 6]);
1247     /// assert_eq!(odds.keys().copied().collect::<Vec<_>>(), vec![1, 3, 5, 7]);
1248     /// ```
1249     #[unstable(feature = "btree_drain_filter", issue = "70530")]
1250     pub fn drain_filter<F>(&mut self, pred: F) -> DrainFilter<'_, K, V, F>
1251     where
1252         F: FnMut(&K, &mut V) -> bool,
1253     {
1254         DrainFilter { pred, inner: self.drain_filter_inner() }
1255     }
1256     pub(super) fn drain_filter_inner(&mut self) -> DrainFilterInner<'_, K, V> {
1257         let front = self.root.as_mut().map(|r| r.as_mut().first_leaf_edge());
1258         DrainFilterInner { length: &mut self.length, cur_leaf_edge: front }
1259     }
1260
1261     /// Calculates the number of elements if it is incorrect.
1262     fn recalc_length(&mut self) {
1263         fn dfs<'a, K, V>(node: NodeRef<marker::Immut<'a>, K, V, marker::LeafOrInternal>) -> usize
1264         where
1265             K: 'a,
1266             V: 'a,
1267         {
1268             let mut res = node.len();
1269
1270             if let Internal(node) = node.force() {
1271                 let mut edge = node.first_edge();
1272                 loop {
1273                     res += dfs(edge.reborrow().descend());
1274                     match edge.right_kv() {
1275                         Ok(right_kv) => {
1276                             edge = right_kv.right_edge();
1277                         }
1278                         Err(_) => {
1279                             break;
1280                         }
1281                     }
1282                 }
1283             }
1284
1285             res
1286         }
1287
1288         self.length = dfs(self.root.as_ref().unwrap().as_ref());
1289     }
1290 }
1291
1292 #[stable(feature = "rust1", since = "1.0.0")]
1293 impl<'a, K: 'a, V: 'a> IntoIterator for &'a BTreeMap<K, V> {
1294     type Item = (&'a K, &'a V);
1295     type IntoIter = Iter<'a, K, V>;
1296
1297     fn into_iter(self) -> Iter<'a, K, V> {
1298         self.iter()
1299     }
1300 }
1301
1302 #[stable(feature = "rust1", since = "1.0.0")]
1303 impl<'a, K: 'a, V: 'a> Iterator for Iter<'a, K, V> {
1304     type Item = (&'a K, &'a V);
1305
1306     fn next(&mut self) -> Option<(&'a K, &'a V)> {
1307         if self.length == 0 {
1308             None
1309         } else {
1310             self.length -= 1;
1311             unsafe { Some(self.range.next_unchecked()) }
1312         }
1313     }
1314
1315     fn size_hint(&self) -> (usize, Option<usize>) {
1316         (self.length, Some(self.length))
1317     }
1318
1319     fn last(mut self) -> Option<(&'a K, &'a V)> {
1320         self.next_back()
1321     }
1322
1323     fn min(mut self) -> Option<(&'a K, &'a V)> {
1324         self.next()
1325     }
1326
1327     fn max(mut self) -> Option<(&'a K, &'a V)> {
1328         self.next_back()
1329     }
1330 }
1331
1332 #[stable(feature = "fused", since = "1.26.0")]
1333 impl<K, V> FusedIterator for Iter<'_, K, V> {}
1334
1335 #[stable(feature = "rust1", since = "1.0.0")]
1336 impl<'a, K: 'a, V: 'a> DoubleEndedIterator for Iter<'a, K, V> {
1337     fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
1338         if self.length == 0 {
1339             None
1340         } else {
1341             self.length -= 1;
1342             unsafe { Some(self.range.next_back_unchecked()) }
1343         }
1344     }
1345 }
1346
1347 #[stable(feature = "rust1", since = "1.0.0")]
1348 impl<K, V> ExactSizeIterator for Iter<'_, K, V> {
1349     fn len(&self) -> usize {
1350         self.length
1351     }
1352 }
1353
1354 #[stable(feature = "rust1", since = "1.0.0")]
1355 impl<K, V> Clone for Iter<'_, K, V> {
1356     fn clone(&self) -> Self {
1357         Iter { range: self.range.clone(), length: self.length }
1358     }
1359 }
1360
1361 #[stable(feature = "rust1", since = "1.0.0")]
1362 impl<'a, K: 'a, V: 'a> IntoIterator for &'a mut BTreeMap<K, V> {
1363     type Item = (&'a K, &'a mut V);
1364     type IntoIter = IterMut<'a, K, V>;
1365
1366     fn into_iter(self) -> IterMut<'a, K, V> {
1367         self.iter_mut()
1368     }
1369 }
1370
1371 #[stable(feature = "rust1", since = "1.0.0")]
1372 impl<'a, K: 'a, V: 'a> Iterator for IterMut<'a, K, V> {
1373     type Item = (&'a K, &'a mut V);
1374
1375     fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
1376         if self.length == 0 {
1377             None
1378         } else {
1379             self.length -= 1;
1380             let (k, v) = unsafe { self.range.next_unchecked() };
1381             Some((k, v)) // coerce k from `&mut K` to `&K`
1382         }
1383     }
1384
1385     fn size_hint(&self) -> (usize, Option<usize>) {
1386         (self.length, Some(self.length))
1387     }
1388
1389     fn last(mut self) -> Option<(&'a K, &'a mut V)> {
1390         self.next_back()
1391     }
1392
1393     fn min(mut self) -> Option<(&'a K, &'a mut V)> {
1394         self.next()
1395     }
1396
1397     fn max(mut self) -> Option<(&'a K, &'a mut V)> {
1398         self.next_back()
1399     }
1400 }
1401
1402 #[stable(feature = "rust1", since = "1.0.0")]
1403 impl<'a, K: 'a, V: 'a> DoubleEndedIterator for IterMut<'a, K, V> {
1404     fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
1405         if self.length == 0 {
1406             None
1407         } else {
1408             self.length -= 1;
1409             let (k, v) = unsafe { self.range.next_back_unchecked() };
1410             Some((k, v)) // coerce k from `&mut K` to `&K`
1411         }
1412     }
1413 }
1414
1415 #[stable(feature = "rust1", since = "1.0.0")]
1416 impl<K, V> ExactSizeIterator for IterMut<'_, K, V> {
1417     fn len(&self) -> usize {
1418         self.length
1419     }
1420 }
1421
1422 #[stable(feature = "fused", since = "1.26.0")]
1423 impl<K, V> FusedIterator for IterMut<'_, K, V> {}
1424
1425 #[stable(feature = "rust1", since = "1.0.0")]
1426 impl<K, V> IntoIterator for BTreeMap<K, V> {
1427     type Item = (K, V);
1428     type IntoIter = IntoIter<K, V>;
1429
1430     fn into_iter(self) -> IntoIter<K, V> {
1431         let mut me = ManuallyDrop::new(self);
1432         if let Some(root) = me.root.take() {
1433             let (f, b) = full_range_search(root.into_ref());
1434
1435             IntoIter { front: Some(f), back: Some(b), length: me.length }
1436         } else {
1437             IntoIter { front: None, back: None, length: 0 }
1438         }
1439     }
1440 }
1441
1442 #[stable(feature = "btree_drop", since = "1.7.0")]
1443 impl<K, V> Drop for IntoIter<K, V> {
1444     fn drop(&mut self) {
1445         struct DropGuard<'a, K, V>(&'a mut IntoIter<K, V>);
1446
1447         impl<'a, K, V> Drop for DropGuard<'a, K, V> {
1448             fn drop(&mut self) {
1449                 // Continue the same loop we perform below. This only runs when unwinding, so we
1450                 // don't have to care about panics this time (they'll abort).
1451                 while let Some(_) = self.0.next() {}
1452
1453                 unsafe {
1454                     let mut node =
1455                         unwrap_unchecked(ptr::read(&self.0.front)).into_node().forget_type();
1456                     while let Some(parent) = node.deallocate_and_ascend() {
1457                         node = parent.into_node().forget_type();
1458                     }
1459                 }
1460             }
1461         }
1462
1463         while let Some(pair) = self.next() {
1464             let guard = DropGuard(self);
1465             drop(pair);
1466             mem::forget(guard);
1467         }
1468
1469         unsafe {
1470             if let Some(front) = ptr::read(&self.front) {
1471                 let mut node = front.into_node().forget_type();
1472                 // Most of the nodes have been deallocated while traversing
1473                 // but one pile from a leaf up to the root is left standing.
1474                 while let Some(parent) = node.deallocate_and_ascend() {
1475                     node = parent.into_node().forget_type();
1476                 }
1477             }
1478         }
1479     }
1480 }
1481
1482 #[stable(feature = "rust1", since = "1.0.0")]
1483 impl<K, V> Iterator for IntoIter<K, V> {
1484     type Item = (K, V);
1485
1486     fn next(&mut self) -> Option<(K, V)> {
1487         if self.length == 0 {
1488             None
1489         } else {
1490             self.length -= 1;
1491             Some(unsafe { self.front.as_mut().unwrap().next_unchecked() })
1492         }
1493     }
1494
1495     fn size_hint(&self) -> (usize, Option<usize>) {
1496         (self.length, Some(self.length))
1497     }
1498 }
1499
1500 #[stable(feature = "rust1", since = "1.0.0")]
1501 impl<K, V> DoubleEndedIterator for IntoIter<K, V> {
1502     fn next_back(&mut self) -> Option<(K, V)> {
1503         if self.length == 0 {
1504             None
1505         } else {
1506             self.length -= 1;
1507             Some(unsafe { self.back.as_mut().unwrap().next_back_unchecked() })
1508         }
1509     }
1510 }
1511
1512 #[stable(feature = "rust1", since = "1.0.0")]
1513 impl<K, V> ExactSizeIterator for IntoIter<K, V> {
1514     fn len(&self) -> usize {
1515         self.length
1516     }
1517 }
1518
1519 #[stable(feature = "fused", since = "1.26.0")]
1520 impl<K, V> FusedIterator for IntoIter<K, V> {}
1521
1522 #[stable(feature = "rust1", since = "1.0.0")]
1523 impl<'a, K, V> Iterator for Keys<'a, K, V> {
1524     type Item = &'a K;
1525
1526     fn next(&mut self) -> Option<&'a K> {
1527         self.inner.next().map(|(k, _)| k)
1528     }
1529
1530     fn size_hint(&self) -> (usize, Option<usize>) {
1531         self.inner.size_hint()
1532     }
1533
1534     fn last(mut self) -> Option<&'a K> {
1535         self.next_back()
1536     }
1537
1538     fn min(mut self) -> Option<&'a K> {
1539         self.next()
1540     }
1541
1542     fn max(mut self) -> Option<&'a K> {
1543         self.next_back()
1544     }
1545 }
1546
1547 #[stable(feature = "rust1", since = "1.0.0")]
1548 impl<'a, K, V> DoubleEndedIterator for Keys<'a, K, V> {
1549     fn next_back(&mut self) -> Option<&'a K> {
1550         self.inner.next_back().map(|(k, _)| k)
1551     }
1552 }
1553
1554 #[stable(feature = "rust1", since = "1.0.0")]
1555 impl<K, V> ExactSizeIterator for Keys<'_, K, V> {
1556     fn len(&self) -> usize {
1557         self.inner.len()
1558     }
1559 }
1560
1561 #[stable(feature = "fused", since = "1.26.0")]
1562 impl<K, V> FusedIterator for Keys<'_, K, V> {}
1563
1564 #[stable(feature = "rust1", since = "1.0.0")]
1565 impl<K, V> Clone for Keys<'_, K, V> {
1566     fn clone(&self) -> Self {
1567         Keys { inner: self.inner.clone() }
1568     }
1569 }
1570
1571 #[stable(feature = "rust1", since = "1.0.0")]
1572 impl<'a, K, V> Iterator for Values<'a, K, V> {
1573     type Item = &'a V;
1574
1575     fn next(&mut self) -> Option<&'a V> {
1576         self.inner.next().map(|(_, v)| v)
1577     }
1578
1579     fn size_hint(&self) -> (usize, Option<usize>) {
1580         self.inner.size_hint()
1581     }
1582
1583     fn last(mut self) -> Option<&'a V> {
1584         self.next_back()
1585     }
1586 }
1587
1588 #[stable(feature = "rust1", since = "1.0.0")]
1589 impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V> {
1590     fn next_back(&mut self) -> Option<&'a V> {
1591         self.inner.next_back().map(|(_, v)| v)
1592     }
1593 }
1594
1595 #[stable(feature = "rust1", since = "1.0.0")]
1596 impl<K, V> ExactSizeIterator for Values<'_, K, V> {
1597     fn len(&self) -> usize {
1598         self.inner.len()
1599     }
1600 }
1601
1602 #[stable(feature = "fused", since = "1.26.0")]
1603 impl<K, V> FusedIterator for Values<'_, K, V> {}
1604
1605 #[stable(feature = "rust1", since = "1.0.0")]
1606 impl<K, V> Clone for Values<'_, K, V> {
1607     fn clone(&self) -> Self {
1608         Values { inner: self.inner.clone() }
1609     }
1610 }
1611
1612 /// An iterator produced by calling `drain_filter` on BTreeMap.
1613 #[unstable(feature = "btree_drain_filter", issue = "70530")]
1614 pub struct DrainFilter<'a, K, V, F>
1615 where
1616     K: 'a,
1617     V: 'a,
1618     F: 'a + FnMut(&K, &mut V) -> bool,
1619 {
1620     pred: F,
1621     inner: DrainFilterInner<'a, K, V>,
1622 }
1623 /// Most of the implementation of DrainFilter, independent of the type
1624 /// of the predicate, thus also serving for BTreeSet::DrainFilter.
1625 pub(super) struct DrainFilterInner<'a, K: 'a, V: 'a> {
1626     length: &'a mut usize,
1627     cur_leaf_edge: Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>>,
1628 }
1629
1630 #[unstable(feature = "btree_drain_filter", issue = "70530")]
1631 impl<K, V, F> Drop for DrainFilter<'_, K, V, F>
1632 where
1633     F: FnMut(&K, &mut V) -> bool,
1634 {
1635     fn drop(&mut self) {
1636         self.for_each(drop);
1637     }
1638 }
1639
1640 #[unstable(feature = "btree_drain_filter", issue = "70530")]
1641 impl<K, V, F> fmt::Debug for DrainFilter<'_, K, V, F>
1642 where
1643     K: fmt::Debug,
1644     V: fmt::Debug,
1645     F: FnMut(&K, &mut V) -> bool,
1646 {
1647     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1648         f.debug_tuple("DrainFilter").field(&self.inner.peek()).finish()
1649     }
1650 }
1651
1652 #[unstable(feature = "btree_drain_filter", issue = "70530")]
1653 impl<K, V, F> Iterator for DrainFilter<'_, K, V, F>
1654 where
1655     F: FnMut(&K, &mut V) -> bool,
1656 {
1657     type Item = (K, V);
1658
1659     fn next(&mut self) -> Option<(K, V)> {
1660         self.inner.next(&mut self.pred)
1661     }
1662
1663     fn size_hint(&self) -> (usize, Option<usize>) {
1664         self.inner.size_hint()
1665     }
1666 }
1667
1668 impl<'a, K: 'a, V: 'a> DrainFilterInner<'a, K, V> {
1669     /// Allow Debug implementations to predict the next element.
1670     pub(super) fn peek(&self) -> Option<(&K, &V)> {
1671         let edge = self.cur_leaf_edge.as_ref()?;
1672         edge.reborrow().next_kv().ok().map(|kv| kv.into_kv())
1673     }
1674
1675     unsafe fn next_kv(
1676         &mut self,
1677     ) -> Option<Handle<NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal>, marker::KV>> {
1678         let edge = self.cur_leaf_edge.as_ref()?;
1679         unsafe { ptr::read(edge).next_kv().ok() }
1680     }
1681
1682     /// Implementation of a typical `DrainFilter::next` method, given the predicate.
1683     pub(super) fn next<F>(&mut self, pred: &mut F) -> Option<(K, V)>
1684     where
1685         F: FnMut(&K, &mut V) -> bool,
1686     {
1687         while let Some(mut kv) = unsafe { self.next_kv() } {
1688             let (k, v) = kv.kv_mut();
1689             if pred(k, v) {
1690                 *self.length -= 1;
1691                 let (k, v, leaf_edge_location) = kv.remove_kv_tracking();
1692                 self.cur_leaf_edge = Some(leaf_edge_location);
1693                 return Some((k, v));
1694             }
1695             self.cur_leaf_edge = Some(kv.next_leaf_edge());
1696         }
1697         None
1698     }
1699
1700     /// Implementation of a typical `DrainFilter::size_hint` method.
1701     pub(super) fn size_hint(&self) -> (usize, Option<usize>) {
1702         (0, Some(*self.length))
1703     }
1704 }
1705
1706 #[unstable(feature = "btree_drain_filter", issue = "70530")]
1707 impl<K, V, F> FusedIterator for DrainFilter<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {}
1708
1709 #[stable(feature = "btree_range", since = "1.17.0")]
1710 impl<'a, K, V> Iterator for Range<'a, K, V> {
1711     type Item = (&'a K, &'a V);
1712
1713     fn next(&mut self) -> Option<(&'a K, &'a V)> {
1714         if self.is_empty() { None } else { unsafe { Some(self.next_unchecked()) } }
1715     }
1716
1717     fn last(mut self) -> Option<(&'a K, &'a V)> {
1718         self.next_back()
1719     }
1720
1721     fn min(mut self) -> Option<(&'a K, &'a V)> {
1722         self.next()
1723     }
1724
1725     fn max(mut self) -> Option<(&'a K, &'a V)> {
1726         self.next_back()
1727     }
1728 }
1729
1730 #[stable(feature = "map_values_mut", since = "1.10.0")]
1731 impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
1732     type Item = &'a mut V;
1733
1734     fn next(&mut self) -> Option<&'a mut V> {
1735         self.inner.next().map(|(_, v)| v)
1736     }
1737
1738     fn size_hint(&self) -> (usize, Option<usize>) {
1739         self.inner.size_hint()
1740     }
1741
1742     fn last(mut self) -> Option<&'a mut V> {
1743         self.next_back()
1744     }
1745 }
1746
1747 #[stable(feature = "map_values_mut", since = "1.10.0")]
1748 impl<'a, K, V> DoubleEndedIterator for ValuesMut<'a, K, V> {
1749     fn next_back(&mut self) -> Option<&'a mut V> {
1750         self.inner.next_back().map(|(_, v)| v)
1751     }
1752 }
1753
1754 #[stable(feature = "map_values_mut", since = "1.10.0")]
1755 impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V> {
1756     fn len(&self) -> usize {
1757         self.inner.len()
1758     }
1759 }
1760
1761 #[stable(feature = "fused", since = "1.26.0")]
1762 impl<K, V> FusedIterator for ValuesMut<'_, K, V> {}
1763
1764 impl<'a, K, V> Range<'a, K, V> {
1765     fn is_empty(&self) -> bool {
1766         self.front == self.back
1767     }
1768
1769     unsafe fn next_unchecked(&mut self) -> (&'a K, &'a V) {
1770         unsafe { unwrap_unchecked(self.front.as_mut()).next_unchecked() }
1771     }
1772 }
1773
1774 #[stable(feature = "btree_range", since = "1.17.0")]
1775 impl<'a, K, V> DoubleEndedIterator for Range<'a, K, V> {
1776     fn next_back(&mut self) -> Option<(&'a K, &'a V)> {
1777         if self.is_empty() { None } else { Some(unsafe { self.next_back_unchecked() }) }
1778     }
1779 }
1780
1781 impl<'a, K, V> Range<'a, K, V> {
1782     unsafe fn next_back_unchecked(&mut self) -> (&'a K, &'a V) {
1783         unsafe { unwrap_unchecked(self.back.as_mut()).next_back_unchecked() }
1784     }
1785 }
1786
1787 #[stable(feature = "fused", since = "1.26.0")]
1788 impl<K, V> FusedIterator for Range<'_, K, V> {}
1789
1790 #[stable(feature = "btree_range", since = "1.17.0")]
1791 impl<K, V> Clone for Range<'_, K, V> {
1792     fn clone(&self) -> Self {
1793         Range { front: self.front, back: self.back }
1794     }
1795 }
1796
1797 #[stable(feature = "btree_range", since = "1.17.0")]
1798 impl<'a, K, V> Iterator for RangeMut<'a, K, V> {
1799     type Item = (&'a K, &'a mut V);
1800
1801     fn next(&mut self) -> Option<(&'a K, &'a mut V)> {
1802         if self.is_empty() {
1803             None
1804         } else {
1805             let (k, v) = unsafe { self.next_unchecked() };
1806             Some((k, v)) // coerce k from `&mut K` to `&K`
1807         }
1808     }
1809
1810     fn last(mut self) -> Option<(&'a K, &'a mut V)> {
1811         self.next_back()
1812     }
1813
1814     fn min(mut self) -> Option<(&'a K, &'a mut V)> {
1815         self.next()
1816     }
1817
1818     fn max(mut self) -> Option<(&'a K, &'a mut V)> {
1819         self.next_back()
1820     }
1821 }
1822
1823 impl<'a, K, V> RangeMut<'a, K, V> {
1824     fn is_empty(&self) -> bool {
1825         self.front == self.back
1826     }
1827
1828     unsafe fn next_unchecked(&mut self) -> (&'a mut K, &'a mut V) {
1829         unsafe { unwrap_unchecked(self.front.as_mut()).next_unchecked() }
1830     }
1831 }
1832
1833 #[stable(feature = "btree_range", since = "1.17.0")]
1834 impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V> {
1835     fn next_back(&mut self) -> Option<(&'a K, &'a mut V)> {
1836         if self.is_empty() {
1837             None
1838         } else {
1839             let (k, v) = unsafe { self.next_back_unchecked() };
1840             Some((k, v)) // coerce k from `&mut K` to `&K`
1841         }
1842     }
1843 }
1844
1845 #[stable(feature = "fused", since = "1.26.0")]
1846 impl<K, V> FusedIterator for RangeMut<'_, K, V> {}
1847
1848 impl<'a, K, V> RangeMut<'a, K, V> {
1849     unsafe fn next_back_unchecked(&mut self) -> (&'a mut K, &'a mut V) {
1850         unsafe { unwrap_unchecked(self.back.as_mut()).next_back_unchecked() }
1851     }
1852 }
1853
1854 #[stable(feature = "rust1", since = "1.0.0")]
1855 impl<K: Ord, V> FromIterator<(K, V)> for BTreeMap<K, V> {
1856     fn from_iter<T: IntoIterator<Item = (K, V)>>(iter: T) -> BTreeMap<K, V> {
1857         let mut map = BTreeMap::new();
1858         map.extend(iter);
1859         map
1860     }
1861 }
1862
1863 #[stable(feature = "rust1", since = "1.0.0")]
1864 impl<K: Ord, V> Extend<(K, V)> for BTreeMap<K, V> {
1865     #[inline]
1866     fn extend<T: IntoIterator<Item = (K, V)>>(&mut self, iter: T) {
1867         iter.into_iter().for_each(move |(k, v)| {
1868             self.insert(k, v);
1869         });
1870     }
1871
1872     #[inline]
1873     fn extend_one(&mut self, (k, v): (K, V)) {
1874         self.insert(k, v);
1875     }
1876 }
1877
1878 #[stable(feature = "extend_ref", since = "1.2.0")]
1879 impl<'a, K: Ord + Copy, V: Copy> Extend<(&'a K, &'a V)> for BTreeMap<K, V> {
1880     fn extend<I: IntoIterator<Item = (&'a K, &'a V)>>(&mut self, iter: I) {
1881         self.extend(iter.into_iter().map(|(&key, &value)| (key, value)));
1882     }
1883
1884     #[inline]
1885     fn extend_one(&mut self, (&k, &v): (&'a K, &'a V)) {
1886         self.insert(k, v);
1887     }
1888 }
1889
1890 #[stable(feature = "rust1", since = "1.0.0")]
1891 impl<K: Hash, V: Hash> Hash for BTreeMap<K, V> {
1892     fn hash<H: Hasher>(&self, state: &mut H) {
1893         for elt in self {
1894             elt.hash(state);
1895         }
1896     }
1897 }
1898
1899 #[stable(feature = "rust1", since = "1.0.0")]
1900 impl<K: Ord, V> Default for BTreeMap<K, V> {
1901     /// Creates an empty `BTreeMap<K, V>`.
1902     fn default() -> BTreeMap<K, V> {
1903         BTreeMap::new()
1904     }
1905 }
1906
1907 #[stable(feature = "rust1", since = "1.0.0")]
1908 impl<K: PartialEq, V: PartialEq> PartialEq for BTreeMap<K, V> {
1909     fn eq(&self, other: &BTreeMap<K, V>) -> bool {
1910         self.len() == other.len() && self.iter().zip(other).all(|(a, b)| a == b)
1911     }
1912 }
1913
1914 #[stable(feature = "rust1", since = "1.0.0")]
1915 impl<K: Eq, V: Eq> Eq for BTreeMap<K, V> {}
1916
1917 #[stable(feature = "rust1", since = "1.0.0")]
1918 impl<K: PartialOrd, V: PartialOrd> PartialOrd for BTreeMap<K, V> {
1919     #[inline]
1920     fn partial_cmp(&self, other: &BTreeMap<K, V>) -> Option<Ordering> {
1921         self.iter().partial_cmp(other.iter())
1922     }
1923 }
1924
1925 #[stable(feature = "rust1", since = "1.0.0")]
1926 impl<K: Ord, V: Ord> Ord for BTreeMap<K, V> {
1927     #[inline]
1928     fn cmp(&self, other: &BTreeMap<K, V>) -> Ordering {
1929         self.iter().cmp(other.iter())
1930     }
1931 }
1932
1933 #[stable(feature = "rust1", since = "1.0.0")]
1934 impl<K: Debug, V: Debug> Debug for BTreeMap<K, V> {
1935     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1936         f.debug_map().entries(self.iter()).finish()
1937     }
1938 }
1939
1940 #[stable(feature = "rust1", since = "1.0.0")]
1941 impl<K: Ord, Q: ?Sized, V> Index<&Q> for BTreeMap<K, V>
1942 where
1943     K: Borrow<Q>,
1944     Q: Ord,
1945 {
1946     type Output = V;
1947
1948     /// Returns a reference to the value corresponding to the supplied key.
1949     ///
1950     /// # Panics
1951     ///
1952     /// Panics if the key is not present in the `BTreeMap`.
1953     #[inline]
1954     fn index(&self, key: &Q) -> &V {
1955         self.get(key).expect("no entry found for key")
1956     }
1957 }
1958
1959 /// Finds the leaf edges delimiting a specified range in or underneath a node.
1960 fn range_search<BorrowType, K, V, Q: ?Sized, R: RangeBounds<Q>>(
1961     root: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
1962     range: R,
1963 ) -> (
1964     Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
1965     Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
1966 )
1967 where
1968     Q: Ord,
1969     K: Borrow<Q>,
1970 {
1971     match (range.start_bound(), range.end_bound()) {
1972         (Excluded(s), Excluded(e)) if s == e => {
1973             panic!("range start and end are equal and excluded in BTreeMap")
1974         }
1975         (Included(s) | Excluded(s), Included(e) | Excluded(e)) if s > e => {
1976             panic!("range start is greater than range end in BTreeMap")
1977         }
1978         _ => {}
1979     };
1980
1981     // We duplicate the root NodeRef here -- we will never access it in a way
1982     // that overlaps references obtained from the root.
1983     let mut min_node = unsafe { ptr::read(&root) };
1984     let mut max_node = root;
1985     let mut min_found = false;
1986     let mut max_found = false;
1987
1988     loop {
1989         let front = match (min_found, range.start_bound()) {
1990             (false, Included(key)) => match search::search_node(min_node, key) {
1991                 Found(kv) => {
1992                     min_found = true;
1993                     kv.left_edge()
1994                 }
1995                 GoDown(edge) => edge,
1996             },
1997             (false, Excluded(key)) => match search::search_node(min_node, key) {
1998                 Found(kv) => {
1999                     min_found = true;
2000                     kv.right_edge()
2001                 }
2002                 GoDown(edge) => edge,
2003             },
2004             (true, Included(_)) => min_node.last_edge(),
2005             (true, Excluded(_)) => min_node.first_edge(),
2006             (_, Unbounded) => min_node.first_edge(),
2007         };
2008
2009         let back = match (max_found, range.end_bound()) {
2010             (false, Included(key)) => match search::search_node(max_node, key) {
2011                 Found(kv) => {
2012                     max_found = true;
2013                     kv.right_edge()
2014                 }
2015                 GoDown(edge) => edge,
2016             },
2017             (false, Excluded(key)) => match search::search_node(max_node, key) {
2018                 Found(kv) => {
2019                     max_found = true;
2020                     kv.left_edge()
2021                 }
2022                 GoDown(edge) => edge,
2023             },
2024             (true, Included(_)) => max_node.first_edge(),
2025             (true, Excluded(_)) => max_node.last_edge(),
2026             (_, Unbounded) => max_node.last_edge(),
2027         };
2028
2029         if front.partial_cmp(&back) == Some(Ordering::Greater) {
2030             panic!("Ord is ill-defined in BTreeMap range");
2031         }
2032         match (front.force(), back.force()) {
2033             (Leaf(f), Leaf(b)) => {
2034                 return (f, b);
2035             }
2036             (Internal(min_int), Internal(max_int)) => {
2037                 min_node = min_int.descend();
2038                 max_node = max_int.descend();
2039             }
2040             _ => unreachable!("BTreeMap has different depths"),
2041         };
2042     }
2043 }
2044
2045 /// Equivalent to `range_search(k, v, ..)` without the `Ord` bound.
2046 fn full_range_search<BorrowType, K, V>(
2047     root: NodeRef<BorrowType, K, V, marker::LeafOrInternal>,
2048 ) -> (
2049     Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
2050     Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>,
2051 ) {
2052     // We duplicate the root NodeRef here -- we will never access it in a way
2053     // that overlaps references obtained from the root.
2054     let mut min_node = unsafe { ptr::read(&root) };
2055     let mut max_node = root;
2056     loop {
2057         let front = min_node.first_edge();
2058         let back = max_node.last_edge();
2059         match (front.force(), back.force()) {
2060             (Leaf(f), Leaf(b)) => {
2061                 return (f, b);
2062             }
2063             (Internal(min_int), Internal(max_int)) => {
2064                 min_node = min_int.descend();
2065                 max_node = max_int.descend();
2066             }
2067             _ => unreachable!("BTreeMap has different depths"),
2068         };
2069     }
2070 }
2071
2072 impl<K, V> BTreeMap<K, V> {
2073     /// Gets an iterator over the entries of the map, sorted by key.
2074     ///
2075     /// # Examples
2076     ///
2077     /// Basic usage:
2078     ///
2079     /// ```
2080     /// use std::collections::BTreeMap;
2081     ///
2082     /// let mut map = BTreeMap::new();
2083     /// map.insert(3, "c");
2084     /// map.insert(2, "b");
2085     /// map.insert(1, "a");
2086     ///
2087     /// for (key, value) in map.iter() {
2088     ///     println!("{}: {}", key, value);
2089     /// }
2090     ///
2091     /// let (first_key, first_value) = map.iter().next().unwrap();
2092     /// assert_eq!((*first_key, *first_value), (1, "a"));
2093     /// ```
2094     #[stable(feature = "rust1", since = "1.0.0")]
2095     pub fn iter(&self) -> Iter<'_, K, V> {
2096         if let Some(root) = &self.root {
2097             let (f, b) = full_range_search(root.as_ref());
2098
2099             Iter { range: Range { front: Some(f), back: Some(b) }, length: self.length }
2100         } else {
2101             Iter { range: Range { front: None, back: None }, length: 0 }
2102         }
2103     }
2104
2105     /// Gets a mutable iterator over the entries of the map, sorted by key.
2106     ///
2107     /// # Examples
2108     ///
2109     /// Basic usage:
2110     ///
2111     /// ```
2112     /// use std::collections::BTreeMap;
2113     ///
2114     /// let mut map = BTreeMap::new();
2115     /// map.insert("a", 1);
2116     /// map.insert("b", 2);
2117     /// map.insert("c", 3);
2118     ///
2119     /// // add 10 to the value if the key isn't "a"
2120     /// for (key, value) in map.iter_mut() {
2121     ///     if key != &"a" {
2122     ///         *value += 10;
2123     ///     }
2124     /// }
2125     /// ```
2126     #[stable(feature = "rust1", since = "1.0.0")]
2127     pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
2128         if let Some(root) = &mut self.root {
2129             let (f, b) = full_range_search(root.as_mut());
2130
2131             IterMut {
2132                 range: RangeMut { front: Some(f), back: Some(b), _marker: PhantomData },
2133                 length: self.length,
2134             }
2135         } else {
2136             IterMut { range: RangeMut { front: None, back: None, _marker: PhantomData }, length: 0 }
2137         }
2138     }
2139
2140     /// Gets an iterator over the keys of the map, in sorted order.
2141     ///
2142     /// # Examples
2143     ///
2144     /// Basic usage:
2145     ///
2146     /// ```
2147     /// use std::collections::BTreeMap;
2148     ///
2149     /// let mut a = BTreeMap::new();
2150     /// a.insert(2, "b");
2151     /// a.insert(1, "a");
2152     ///
2153     /// let keys: Vec<_> = a.keys().cloned().collect();
2154     /// assert_eq!(keys, [1, 2]);
2155     /// ```
2156     #[stable(feature = "rust1", since = "1.0.0")]
2157     pub fn keys(&self) -> Keys<'_, K, V> {
2158         Keys { inner: self.iter() }
2159     }
2160
2161     /// Gets an iterator over the values of the map, in order by key.
2162     ///
2163     /// # Examples
2164     ///
2165     /// Basic usage:
2166     ///
2167     /// ```
2168     /// use std::collections::BTreeMap;
2169     ///
2170     /// let mut a = BTreeMap::new();
2171     /// a.insert(1, "hello");
2172     /// a.insert(2, "goodbye");
2173     ///
2174     /// let values: Vec<&str> = a.values().cloned().collect();
2175     /// assert_eq!(values, ["hello", "goodbye"]);
2176     /// ```
2177     #[stable(feature = "rust1", since = "1.0.0")]
2178     pub fn values(&self) -> Values<'_, K, V> {
2179         Values { inner: self.iter() }
2180     }
2181
2182     /// Gets a mutable iterator over the values of the map, in order by key.
2183     ///
2184     /// # Examples
2185     ///
2186     /// Basic usage:
2187     ///
2188     /// ```
2189     /// use std::collections::BTreeMap;
2190     ///
2191     /// let mut a = BTreeMap::new();
2192     /// a.insert(1, String::from("hello"));
2193     /// a.insert(2, String::from("goodbye"));
2194     ///
2195     /// for value in a.values_mut() {
2196     ///     value.push_str("!");
2197     /// }
2198     ///
2199     /// let values: Vec<String> = a.values().cloned().collect();
2200     /// assert_eq!(values, [String::from("hello!"),
2201     ///                     String::from("goodbye!")]);
2202     /// ```
2203     #[stable(feature = "map_values_mut", since = "1.10.0")]
2204     pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
2205         ValuesMut { inner: self.iter_mut() }
2206     }
2207
2208     /// Returns the number of elements in the map.
2209     ///
2210     /// # Examples
2211     ///
2212     /// Basic usage:
2213     ///
2214     /// ```
2215     /// use std::collections::BTreeMap;
2216     ///
2217     /// let mut a = BTreeMap::new();
2218     /// assert_eq!(a.len(), 0);
2219     /// a.insert(1, "a");
2220     /// assert_eq!(a.len(), 1);
2221     /// ```
2222     #[stable(feature = "rust1", since = "1.0.0")]
2223     pub fn len(&self) -> usize {
2224         self.length
2225     }
2226
2227     /// Returns `true` if the map contains no elements.
2228     ///
2229     /// # Examples
2230     ///
2231     /// Basic usage:
2232     ///
2233     /// ```
2234     /// use std::collections::BTreeMap;
2235     ///
2236     /// let mut a = BTreeMap::new();
2237     /// assert!(a.is_empty());
2238     /// a.insert(1, "a");
2239     /// assert!(!a.is_empty());
2240     /// ```
2241     #[stable(feature = "rust1", since = "1.0.0")]
2242     pub fn is_empty(&self) -> bool {
2243         self.len() == 0
2244     }
2245
2246     /// If the root node is the empty (non-allocated) root node, allocate our
2247     /// own node. Is an associated function to avoid borrowing the entire BTreeMap.
2248     fn ensure_is_owned(root: &mut Option<node::Root<K, V>>) -> &mut node::Root<K, V> {
2249         root.get_or_insert_with(node::Root::new_leaf)
2250     }
2251 }
2252
2253 impl<'a, K: Ord, V> Entry<'a, K, V> {
2254     /// Ensures a value is in the entry by inserting the default if empty, and returns
2255     /// a mutable reference to the value in the entry.
2256     ///
2257     /// # Examples
2258     ///
2259     /// ```
2260     /// use std::collections::BTreeMap;
2261     ///
2262     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2263     /// map.entry("poneyland").or_insert(12);
2264     ///
2265     /// assert_eq!(map["poneyland"], 12);
2266     /// ```
2267     #[stable(feature = "rust1", since = "1.0.0")]
2268     pub fn or_insert(self, default: V) -> &'a mut V {
2269         match self {
2270             Occupied(entry) => entry.into_mut(),
2271             Vacant(entry) => entry.insert(default),
2272         }
2273     }
2274
2275     /// Ensures a value is in the entry by inserting the result of the default function if empty,
2276     /// and returns a mutable reference to the value in the entry.
2277     ///
2278     /// # Examples
2279     ///
2280     /// ```
2281     /// use std::collections::BTreeMap;
2282     ///
2283     /// let mut map: BTreeMap<&str, String> = BTreeMap::new();
2284     /// let s = "hoho".to_string();
2285     ///
2286     /// map.entry("poneyland").or_insert_with(|| s);
2287     ///
2288     /// assert_eq!(map["poneyland"], "hoho".to_string());
2289     /// ```
2290     #[stable(feature = "rust1", since = "1.0.0")]
2291     pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V {
2292         match self {
2293             Occupied(entry) => entry.into_mut(),
2294             Vacant(entry) => entry.insert(default()),
2295         }
2296     }
2297
2298     #[unstable(feature = "or_insert_with_key", issue = "71024")]
2299     /// Ensures a value is in the entry by inserting, if empty, the result of the default function,
2300     /// which takes the key as its argument, and returns a mutable reference to the value in the
2301     /// entry.
2302     ///
2303     /// # Examples
2304     ///
2305     /// ```
2306     /// #![feature(or_insert_with_key)]
2307     /// use std::collections::BTreeMap;
2308     ///
2309     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2310     ///
2311     /// map.entry("poneyland").or_insert_with_key(|key| key.chars().count());
2312     ///
2313     /// assert_eq!(map["poneyland"], 9);
2314     /// ```
2315     #[inline]
2316     pub fn or_insert_with_key<F: FnOnce(&K) -> V>(self, default: F) -> &'a mut V {
2317         match self {
2318             Occupied(entry) => entry.into_mut(),
2319             Vacant(entry) => {
2320                 let value = default(entry.key());
2321                 entry.insert(value)
2322             }
2323         }
2324     }
2325
2326     /// Returns a reference to this entry's key.
2327     ///
2328     /// # Examples
2329     ///
2330     /// ```
2331     /// use std::collections::BTreeMap;
2332     ///
2333     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2334     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2335     /// ```
2336     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2337     pub fn key(&self) -> &K {
2338         match *self {
2339             Occupied(ref entry) => entry.key(),
2340             Vacant(ref entry) => entry.key(),
2341         }
2342     }
2343
2344     /// Provides in-place mutable access to an occupied entry before any
2345     /// potential inserts into the map.
2346     ///
2347     /// # Examples
2348     ///
2349     /// ```
2350     /// use std::collections::BTreeMap;
2351     ///
2352     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2353     ///
2354     /// map.entry("poneyland")
2355     ///    .and_modify(|e| { *e += 1 })
2356     ///    .or_insert(42);
2357     /// assert_eq!(map["poneyland"], 42);
2358     ///
2359     /// map.entry("poneyland")
2360     ///    .and_modify(|e| { *e += 1 })
2361     ///    .or_insert(42);
2362     /// assert_eq!(map["poneyland"], 43);
2363     /// ```
2364     #[stable(feature = "entry_and_modify", since = "1.26.0")]
2365     pub fn and_modify<F>(self, f: F) -> Self
2366     where
2367         F: FnOnce(&mut V),
2368     {
2369         match self {
2370             Occupied(mut entry) => {
2371                 f(entry.get_mut());
2372                 Occupied(entry)
2373             }
2374             Vacant(entry) => Vacant(entry),
2375         }
2376     }
2377 }
2378
2379 impl<'a, K: Ord, V: Default> Entry<'a, K, V> {
2380     #[stable(feature = "entry_or_default", since = "1.28.0")]
2381     /// Ensures a value is in the entry by inserting the default value if empty,
2382     /// and returns a mutable reference to the value in the entry.
2383     ///
2384     /// # Examples
2385     ///
2386     /// ```
2387     /// use std::collections::BTreeMap;
2388     ///
2389     /// let mut map: BTreeMap<&str, Option<usize>> = BTreeMap::new();
2390     /// map.entry("poneyland").or_default();
2391     ///
2392     /// assert_eq!(map["poneyland"], None);
2393     /// ```
2394     pub fn or_default(self) -> &'a mut V {
2395         match self {
2396             Occupied(entry) => entry.into_mut(),
2397             Vacant(entry) => entry.insert(Default::default()),
2398         }
2399     }
2400 }
2401
2402 impl<'a, K: Ord, V> VacantEntry<'a, K, V> {
2403     /// Gets a reference to the key that would be used when inserting a value
2404     /// through the VacantEntry.
2405     ///
2406     /// # Examples
2407     ///
2408     /// ```
2409     /// use std::collections::BTreeMap;
2410     ///
2411     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2412     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2413     /// ```
2414     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2415     pub fn key(&self) -> &K {
2416         &self.key
2417     }
2418
2419     /// Take ownership of the key.
2420     ///
2421     /// # Examples
2422     ///
2423     /// ```
2424     /// use std::collections::BTreeMap;
2425     /// use std::collections::btree_map::Entry;
2426     ///
2427     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2428     ///
2429     /// if let Entry::Vacant(v) = map.entry("poneyland") {
2430     ///     v.into_key();
2431     /// }
2432     /// ```
2433     #[stable(feature = "map_entry_recover_keys2", since = "1.12.0")]
2434     pub fn into_key(self) -> K {
2435         self.key
2436     }
2437
2438     /// Sets the value of the entry with the `VacantEntry`'s key,
2439     /// and returns a mutable reference to it.
2440     ///
2441     /// # Examples
2442     ///
2443     /// ```
2444     /// use std::collections::BTreeMap;
2445     /// use std::collections::btree_map::Entry;
2446     ///
2447     /// let mut map: BTreeMap<&str, u32> = BTreeMap::new();
2448     ///
2449     /// if let Entry::Vacant(o) = map.entry("poneyland") {
2450     ///     o.insert(37);
2451     /// }
2452     /// assert_eq!(map["poneyland"], 37);
2453     /// ```
2454     #[stable(feature = "rust1", since = "1.0.0")]
2455     pub fn insert(self, value: V) -> &'a mut V {
2456         *self.length += 1;
2457
2458         let out_ptr;
2459
2460         let mut ins_k;
2461         let mut ins_v;
2462         let mut ins_edge;
2463
2464         let mut cur_parent = match self.handle.insert(self.key, value) {
2465             (Fit(handle), _) => return handle.into_kv_mut().1,
2466             (Split(left, k, v, right), ptr) => {
2467                 ins_k = k;
2468                 ins_v = v;
2469                 ins_edge = right;
2470                 out_ptr = ptr;
2471                 left.ascend().map_err(|n| n.into_root_mut())
2472             }
2473         };
2474
2475         loop {
2476             match cur_parent {
2477                 Ok(parent) => match parent.insert(ins_k, ins_v, ins_edge) {
2478                     Fit(_) => return unsafe { &mut *out_ptr },
2479                     Split(left, k, v, right) => {
2480                         ins_k = k;
2481                         ins_v = v;
2482                         ins_edge = right;
2483                         cur_parent = left.ascend().map_err(|n| n.into_root_mut());
2484                     }
2485                 },
2486                 Err(root) => {
2487                     root.push_level().push(ins_k, ins_v, ins_edge);
2488                     return unsafe { &mut *out_ptr };
2489                 }
2490             }
2491         }
2492     }
2493 }
2494
2495 impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> {
2496     /// Gets a reference to the key in the entry.
2497     ///
2498     /// # Examples
2499     ///
2500     /// ```
2501     /// use std::collections::BTreeMap;
2502     ///
2503     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2504     /// map.entry("poneyland").or_insert(12);
2505     /// assert_eq!(map.entry("poneyland").key(), &"poneyland");
2506     /// ```
2507     #[stable(feature = "map_entry_keys", since = "1.10.0")]
2508     pub fn key(&self) -> &K {
2509         self.handle.reborrow().into_kv().0
2510     }
2511
2512     /// Take ownership of the key and value from the map.
2513     ///
2514     /// # Examples
2515     ///
2516     /// ```
2517     /// use std::collections::BTreeMap;
2518     /// use std::collections::btree_map::Entry;
2519     ///
2520     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2521     /// map.entry("poneyland").or_insert(12);
2522     ///
2523     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2524     ///     // We delete the entry from the map.
2525     ///     o.remove_entry();
2526     /// }
2527     ///
2528     /// // If now try to get the value, it will panic:
2529     /// // println!("{}", map["poneyland"]);
2530     /// ```
2531     #[stable(feature = "map_entry_recover_keys2", since = "1.12.0")]
2532     pub fn remove_entry(self) -> (K, V) {
2533         self.remove_kv()
2534     }
2535
2536     /// Gets a reference to the value in the entry.
2537     ///
2538     /// # Examples
2539     ///
2540     /// ```
2541     /// use std::collections::BTreeMap;
2542     /// use std::collections::btree_map::Entry;
2543     ///
2544     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2545     /// map.entry("poneyland").or_insert(12);
2546     ///
2547     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2548     ///     assert_eq!(o.get(), &12);
2549     /// }
2550     /// ```
2551     #[stable(feature = "rust1", since = "1.0.0")]
2552     pub fn get(&self) -> &V {
2553         self.handle.reborrow().into_kv().1
2554     }
2555
2556     /// Gets a mutable reference to the value in the entry.
2557     ///
2558     /// If you need a reference to the `OccupiedEntry` that may outlive the
2559     /// destruction of the `Entry` value, see [`into_mut`].
2560     ///
2561     /// [`into_mut`]: #method.into_mut
2562     ///
2563     /// # Examples
2564     ///
2565     /// ```
2566     /// use std::collections::BTreeMap;
2567     /// use std::collections::btree_map::Entry;
2568     ///
2569     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2570     /// map.entry("poneyland").or_insert(12);
2571     ///
2572     /// assert_eq!(map["poneyland"], 12);
2573     /// if let Entry::Occupied(mut o) = map.entry("poneyland") {
2574     ///     *o.get_mut() += 10;
2575     ///     assert_eq!(*o.get(), 22);
2576     ///
2577     ///     // We can use the same Entry multiple times.
2578     ///     *o.get_mut() += 2;
2579     /// }
2580     /// assert_eq!(map["poneyland"], 24);
2581     /// ```
2582     #[stable(feature = "rust1", since = "1.0.0")]
2583     pub fn get_mut(&mut self) -> &mut V {
2584         self.handle.kv_mut().1
2585     }
2586
2587     /// Converts the entry into a mutable reference to its value.
2588     ///
2589     /// If you need multiple references to the `OccupiedEntry`, see [`get_mut`].
2590     ///
2591     /// [`get_mut`]: #method.get_mut
2592     ///
2593     /// # Examples
2594     ///
2595     /// ```
2596     /// use std::collections::BTreeMap;
2597     /// use std::collections::btree_map::Entry;
2598     ///
2599     /// let mut map: BTreeMap<&str, usize> = BTreeMap::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     /// assert_eq!(map["poneyland"], 22);
2607     /// ```
2608     #[stable(feature = "rust1", since = "1.0.0")]
2609     pub fn into_mut(self) -> &'a mut V {
2610         self.handle.into_kv_mut().1
2611     }
2612
2613     /// Sets the value of the entry with the `OccupiedEntry`'s key,
2614     /// and returns the entry's old value.
2615     ///
2616     /// # Examples
2617     ///
2618     /// ```
2619     /// use std::collections::BTreeMap;
2620     /// use std::collections::btree_map::Entry;
2621     ///
2622     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2623     /// map.entry("poneyland").or_insert(12);
2624     ///
2625     /// if let Entry::Occupied(mut o) = map.entry("poneyland") {
2626     ///     assert_eq!(o.insert(15), 12);
2627     /// }
2628     /// assert_eq!(map["poneyland"], 15);
2629     /// ```
2630     #[stable(feature = "rust1", since = "1.0.0")]
2631     pub fn insert(&mut self, value: V) -> V {
2632         mem::replace(self.get_mut(), value)
2633     }
2634
2635     /// Takes the value of the entry out of the map, and returns it.
2636     ///
2637     /// # Examples
2638     ///
2639     /// ```
2640     /// use std::collections::BTreeMap;
2641     /// use std::collections::btree_map::Entry;
2642     ///
2643     /// let mut map: BTreeMap<&str, usize> = BTreeMap::new();
2644     /// map.entry("poneyland").or_insert(12);
2645     ///
2646     /// if let Entry::Occupied(o) = map.entry("poneyland") {
2647     ///     assert_eq!(o.remove(), 12);
2648     /// }
2649     /// // If we try to get "poneyland"'s value, it'll panic:
2650     /// // println!("{}", map["poneyland"]);
2651     /// ```
2652     #[stable(feature = "rust1", since = "1.0.0")]
2653     pub fn remove(self) -> V {
2654         self.remove_kv().1
2655     }
2656
2657     fn remove_kv(self) -> (K, V) {
2658         *self.length -= 1;
2659
2660         let (old_key, old_val, _) = self.handle.remove_kv_tracking();
2661         (old_key, old_val)
2662     }
2663 }
2664
2665 impl<'a, K: 'a, V: 'a> Handle<NodeRef<marker::Mut<'a>, K, V, marker::LeafOrInternal>, marker::KV> {
2666     /// Removes a key/value-pair from the map, and returns that pair, as well as
2667     /// the leaf edge corresponding to that former pair.
2668     fn remove_kv_tracking(
2669         self,
2670     ) -> (K, V, Handle<NodeRef<marker::Mut<'a>, K, V, marker::Leaf>, marker::Edge>) {
2671         let (mut pos, old_key, old_val, was_internal) = match self.force() {
2672             Leaf(leaf) => {
2673                 let (hole, old_key, old_val) = leaf.remove();
2674                 (hole, old_key, old_val, false)
2675             }
2676             Internal(mut internal) => {
2677                 // Replace the location freed in the internal node with the next KV,
2678                 // and remove that next KV from its leaf.
2679
2680                 let key_loc = internal.kv_mut().0 as *mut K;
2681                 let val_loc = internal.kv_mut().1 as *mut V;
2682
2683                 // Deleting from the left side is typically faster since we can
2684                 // just pop an element from the end of the KV array without
2685                 // needing to shift the other values.
2686                 let to_remove = internal.left_edge().descend().last_leaf_edge().left_kv().ok();
2687                 let to_remove = unsafe { unwrap_unchecked(to_remove) };
2688
2689                 let (hole, key, val) = to_remove.remove();
2690
2691                 let old_key = unsafe { mem::replace(&mut *key_loc, key) };
2692                 let old_val = unsafe { mem::replace(&mut *val_loc, val) };
2693
2694                 (hole, old_key, old_val, true)
2695             }
2696         };
2697
2698         // Handle underflow
2699         let mut cur_node = unsafe { ptr::read(&pos).into_node().forget_type() };
2700         let mut at_leaf = true;
2701         while cur_node.len() < node::MIN_LEN {
2702             match handle_underfull_node(cur_node) {
2703                 AtRoot => break,
2704                 Merged(edge, merged_with_left, offset) => {
2705                     // If we merged with our right sibling then our tracked
2706                     // position has not changed. However if we merged with our
2707                     // left sibling then our tracked position is now dangling.
2708                     if at_leaf && merged_with_left {
2709                         let idx = pos.idx() + offset;
2710                         let node = match unsafe { ptr::read(&edge).descend().force() } {
2711                             Leaf(leaf) => leaf,
2712                             Internal(_) => unreachable!(),
2713                         };
2714                         pos = unsafe { Handle::new_edge(node, idx) };
2715                     }
2716
2717                     let parent = edge.into_node();
2718                     if parent.len() == 0 {
2719                         // We must be at the root
2720                         parent.into_root_mut().pop_level();
2721                         break;
2722                     } else {
2723                         cur_node = parent.forget_type();
2724                         at_leaf = false;
2725                     }
2726                 }
2727                 Stole(stole_from_left) => {
2728                     // Adjust the tracked position if we stole from a left sibling
2729                     if stole_from_left && at_leaf {
2730                         // SAFETY: This is safe since we just added an element to our node.
2731                         unsafe {
2732                             pos.next_unchecked();
2733                         }
2734                     }
2735                     break;
2736                 }
2737             }
2738         }
2739
2740         // If we deleted from an internal node then we need to compensate for
2741         // the earlier swap and adjust the tracked position to point to the
2742         // next element.
2743         if was_internal {
2744             pos = unsafe { unwrap_unchecked(pos.next_kv().ok()).next_leaf_edge() };
2745         }
2746
2747         (old_key, old_val, pos)
2748     }
2749 }
2750
2751 impl<K, V> node::Root<K, V> {
2752     /// Removes empty levels on the top, but keep an empty leaf if the entire tree is empty.
2753     fn fix_top(&mut self) {
2754         while self.height() > 0 && self.as_ref().len() == 0 {
2755             self.pop_level();
2756         }
2757     }
2758
2759     fn fix_right_border(&mut self) {
2760         self.fix_top();
2761
2762         {
2763             let mut cur_node = self.as_mut();
2764
2765             while let Internal(node) = cur_node.force() {
2766                 let mut last_kv = node.last_kv();
2767
2768                 if last_kv.can_merge() {
2769                     cur_node = last_kv.merge().descend();
2770                 } else {
2771                     let right_len = last_kv.reborrow().right_edge().descend().len();
2772                     // `MINLEN + 1` to avoid readjust if merge happens on the next level.
2773                     if right_len < node::MIN_LEN + 1 {
2774                         last_kv.bulk_steal_left(node::MIN_LEN + 1 - right_len);
2775                     }
2776                     cur_node = last_kv.right_edge().descend();
2777                 }
2778             }
2779         }
2780
2781         self.fix_top();
2782     }
2783
2784     /// The symmetric clone of `fix_right_border`.
2785     fn fix_left_border(&mut self) {
2786         self.fix_top();
2787
2788         {
2789             let mut cur_node = self.as_mut();
2790
2791             while let Internal(node) = cur_node.force() {
2792                 let mut first_kv = node.first_kv();
2793
2794                 if first_kv.can_merge() {
2795                     cur_node = first_kv.merge().descend();
2796                 } else {
2797                     let left_len = first_kv.reborrow().left_edge().descend().len();
2798                     if left_len < node::MIN_LEN + 1 {
2799                         first_kv.bulk_steal_right(node::MIN_LEN + 1 - left_len);
2800                     }
2801                     cur_node = first_kv.left_edge().descend();
2802                 }
2803             }
2804         }
2805
2806         self.fix_top();
2807     }
2808 }
2809
2810 enum UnderflowResult<'a, K, V> {
2811     AtRoot,
2812     Merged(Handle<NodeRef<marker::Mut<'a>, K, V, marker::Internal>, marker::Edge>, bool, usize),
2813     Stole(bool),
2814 }
2815
2816 fn handle_underfull_node<K, V>(
2817     node: NodeRef<marker::Mut<'_>, K, V, marker::LeafOrInternal>,
2818 ) -> UnderflowResult<'_, K, V> {
2819     let parent = match node.ascend() {
2820         Ok(parent) => parent,
2821         Err(_) => return AtRoot,
2822     };
2823
2824     let (is_left, mut handle) = match parent.left_kv() {
2825         Ok(left) => (true, left),
2826         Err(parent) => {
2827             let right = unsafe { unwrap_unchecked(parent.right_kv().ok()) };
2828             (false, right)
2829         }
2830     };
2831
2832     if handle.can_merge() {
2833         let offset = if is_left { handle.reborrow().left_edge().descend().len() + 1 } else { 0 };
2834         Merged(handle.merge(), is_left, offset)
2835     } else {
2836         if is_left {
2837             handle.steal_left();
2838         } else {
2839             handle.steal_right();
2840         }
2841         Stole(is_left)
2842     }
2843 }
2844
2845 impl<K: Ord, V, I: Iterator<Item = (K, V)>> Iterator for MergeIter<K, V, I> {
2846     type Item = (K, V);
2847
2848     fn next(&mut self) -> Option<(K, V)> {
2849         let res = match (self.left.peek(), self.right.peek()) {
2850             (Some(&(ref left_key, _)), Some(&(ref right_key, _))) => left_key.cmp(right_key),
2851             (Some(_), None) => Ordering::Less,
2852             (None, Some(_)) => Ordering::Greater,
2853             (None, None) => return None,
2854         };
2855
2856         // Check which elements comes first and only advance the corresponding iterator.
2857         // If two keys are equal, take the value from `right`.
2858         match res {
2859             Ordering::Less => self.left.next(),
2860             Ordering::Greater => self.right.next(),
2861             Ordering::Equal => {
2862                 self.left.next();
2863                 self.right.next()
2864             }
2865         }
2866     }
2867 }