alloc/collections/btree/
set.rs

1use core::borrow::Borrow;
2use core::cmp::Ordering::{self, Equal, Greater, Less};
3use core::cmp::{max, min};
4use core::fmt::{self, Debug};
5use core::hash::{Hash, Hasher};
6use core::iter::{FusedIterator, Peekable};
7use core::mem::ManuallyDrop;
8use core::ops::{BitAnd, BitOr, BitXor, Bound, RangeBounds, Sub};
9
10use super::map::{self, BTreeMap, Keys};
11use super::merge_iter::MergeIterInner;
12use super::set_val::SetValZST;
13use crate::alloc::{Allocator, Global};
14use crate::vec::Vec;
15
16mod entry;
17
18#[unstable(feature = "btree_set_entry", issue = "133549")]
19pub use self::entry::{Entry, OccupiedEntry, VacantEntry};
20
21/// An ordered set based on a B-Tree.
22///
23/// See [`BTreeMap`]'s documentation for a detailed discussion of this collection's performance
24/// benefits and drawbacks.
25///
26/// It is a logic error for an item to be modified in such a way that the item's ordering relative
27/// to any other item, as determined by the [`Ord`] trait, changes while it is in the set. This is
28/// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or unsafe code.
29/// The behavior resulting from such a logic error is not specified, but will be encapsulated to the
30/// `BTreeSet` that observed the logic error and not result in undefined behavior. This could
31/// include panics, incorrect results, aborts, memory leaks, and non-termination.
32///
33/// Iterators returned by [`BTreeSet::iter`] and [`BTreeSet::into_iter`] produce their items in order, and take worst-case
34/// logarithmic and amortized constant time per item returned.
35///
36/// [`Cell`]: core::cell::Cell
37/// [`RefCell`]: core::cell::RefCell
38///
39/// # Examples
40///
41/// ```
42/// use std::collections::BTreeSet;
43///
44/// // Type inference lets us omit an explicit type signature (which
45/// // would be `BTreeSet<&str>` in this example).
46/// let mut books = BTreeSet::new();
47///
48/// // Add some books.
49/// books.insert("A Dance With Dragons");
50/// books.insert("To Kill a Mockingbird");
51/// books.insert("The Odyssey");
52/// books.insert("The Great Gatsby");
53///
54/// // Check for a specific one.
55/// if !books.contains("The Winds of Winter") {
56///     println!("We have {} books, but The Winds of Winter ain't one.",
57///              books.len());
58/// }
59///
60/// // Remove a book.
61/// books.remove("The Odyssey");
62///
63/// // Iterate over everything.
64/// for book in &books {
65///     println!("{book}");
66/// }
67/// ```
68///
69/// A `BTreeSet` with a known list of items can be initialized from an array:
70///
71/// ```
72/// use std::collections::BTreeSet;
73///
74/// let set = BTreeSet::from([1, 2, 3]);
75/// ```
76#[stable(feature = "rust1", since = "1.0.0")]
77#[cfg_attr(not(test), rustc_diagnostic_item = "BTreeSet")]
78pub struct BTreeSet<
79    T,
80    #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + Clone = Global,
81> {
82    map: BTreeMap<T, SetValZST, A>,
83}
84
85#[stable(feature = "rust1", since = "1.0.0")]
86impl<T: Hash, A: Allocator + Clone> Hash for BTreeSet<T, A> {
87    fn hash<H: Hasher>(&self, state: &mut H) {
88        self.map.hash(state)
89    }
90}
91
92#[stable(feature = "rust1", since = "1.0.0")]
93impl<T: PartialEq, A: Allocator + Clone> PartialEq for BTreeSet<T, A> {
94    fn eq(&self, other: &BTreeSet<T, A>) -> bool {
95        self.map.eq(&other.map)
96    }
97}
98
99#[stable(feature = "rust1", since = "1.0.0")]
100impl<T: Eq, A: Allocator + Clone> Eq for BTreeSet<T, A> {}
101
102#[stable(feature = "rust1", since = "1.0.0")]
103impl<T: PartialOrd, A: Allocator + Clone> PartialOrd for BTreeSet<T, A> {
104    fn partial_cmp(&self, other: &BTreeSet<T, A>) -> Option<Ordering> {
105        self.map.partial_cmp(&other.map)
106    }
107}
108
109#[stable(feature = "rust1", since = "1.0.0")]
110impl<T: Ord, A: Allocator + Clone> Ord for BTreeSet<T, A> {
111    fn cmp(&self, other: &BTreeSet<T, A>) -> Ordering {
112        self.map.cmp(&other.map)
113    }
114}
115
116#[stable(feature = "rust1", since = "1.0.0")]
117impl<T: Clone, A: Allocator + Clone> Clone for BTreeSet<T, A> {
118    fn clone(&self) -> Self {
119        BTreeSet { map: self.map.clone() }
120    }
121
122    fn clone_from(&mut self, source: &Self) {
123        self.map.clone_from(&source.map);
124    }
125}
126
127/// An iterator over the items of a `BTreeSet`.
128///
129/// This `struct` is created by the [`iter`] method on [`BTreeSet`].
130/// See its documentation for more.
131///
132/// [`iter`]: BTreeSet::iter
133#[must_use = "iterators are lazy and do nothing unless consumed"]
134#[stable(feature = "rust1", since = "1.0.0")]
135pub struct Iter<'a, T: 'a> {
136    iter: Keys<'a, T, SetValZST>,
137}
138
139#[stable(feature = "collection_debug", since = "1.17.0")]
140impl<T: fmt::Debug> fmt::Debug for Iter<'_, T> {
141    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
142        f.debug_tuple("Iter").field(&self.iter).finish()
143    }
144}
145
146/// An owning iterator over the items of a `BTreeSet` in ascending order.
147///
148/// This `struct` is created by the [`into_iter`] method on [`BTreeSet`]
149/// (provided by the [`IntoIterator`] trait). See its documentation for more.
150///
151/// [`into_iter`]: BTreeSet#method.into_iter
152#[stable(feature = "rust1", since = "1.0.0")]
153#[derive(Debug)]
154pub struct IntoIter<
155    T,
156    #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + Clone = Global,
157> {
158    iter: super::map::IntoIter<T, SetValZST, A>,
159}
160
161/// An iterator over a sub-range of items in a `BTreeSet`.
162///
163/// This `struct` is created by the [`range`] method on [`BTreeSet`].
164/// See its documentation for more.
165///
166/// [`range`]: BTreeSet::range
167#[must_use = "iterators are lazy and do nothing unless consumed"]
168#[derive(Debug)]
169#[stable(feature = "btree_range", since = "1.17.0")]
170pub struct Range<'a, T: 'a> {
171    iter: super::map::Range<'a, T, SetValZST>,
172}
173
174/// A lazy iterator producing elements in the difference of `BTreeSet`s.
175///
176/// This `struct` is created by the [`difference`] method on [`BTreeSet`].
177/// See its documentation for more.
178///
179/// [`difference`]: BTreeSet::difference
180#[must_use = "this returns the difference as an iterator, \
181              without modifying either input set"]
182#[stable(feature = "rust1", since = "1.0.0")]
183pub struct Difference<
184    'a,
185    T: 'a,
186    #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + Clone = Global,
187> {
188    inner: DifferenceInner<'a, T, A>,
189}
190enum DifferenceInner<'a, T: 'a, A: Allocator + Clone> {
191    Stitch {
192        // iterate all of `self` and some of `other`, spotting matches along the way
193        self_iter: Iter<'a, T>,
194        other_iter: Peekable<Iter<'a, T>>,
195    },
196    Search {
197        // iterate `self`, look up in `other`
198        self_iter: Iter<'a, T>,
199        other_set: &'a BTreeSet<T, A>,
200    },
201    Iterate(Iter<'a, T>), // simply produce all elements in `self`
202}
203
204// Explicit Debug impl necessary because of issue #26925
205impl<T: Debug, A: Allocator + Clone> Debug for DifferenceInner<'_, T, A> {
206    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
207        match self {
208            DifferenceInner::Stitch { self_iter, other_iter } => f
209                .debug_struct("Stitch")
210                .field("self_iter", self_iter)
211                .field("other_iter", other_iter)
212                .finish(),
213            DifferenceInner::Search { self_iter, other_set } => f
214                .debug_struct("Search")
215                .field("self_iter", self_iter)
216                .field("other_iter", other_set)
217                .finish(),
218            DifferenceInner::Iterate(x) => f.debug_tuple("Iterate").field(x).finish(),
219        }
220    }
221}
222
223#[stable(feature = "collection_debug", since = "1.17.0")]
224impl<T: fmt::Debug, A: Allocator + Clone> fmt::Debug for Difference<'_, T, A> {
225    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
226        f.debug_tuple("Difference").field(&self.inner).finish()
227    }
228}
229
230/// A lazy iterator producing elements in the symmetric difference of `BTreeSet`s.
231///
232/// This `struct` is created by the [`symmetric_difference`] method on
233/// [`BTreeSet`]. See its documentation for more.
234///
235/// [`symmetric_difference`]: BTreeSet::symmetric_difference
236#[must_use = "this returns the difference as an iterator, \
237              without modifying either input set"]
238#[stable(feature = "rust1", since = "1.0.0")]
239pub struct SymmetricDifference<'a, T: 'a>(MergeIterInner<Iter<'a, T>>);
240
241#[stable(feature = "collection_debug", since = "1.17.0")]
242impl<T: fmt::Debug> fmt::Debug for SymmetricDifference<'_, T> {
243    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
244        f.debug_tuple("SymmetricDifference").field(&self.0).finish()
245    }
246}
247
248/// A lazy iterator producing elements in the intersection of `BTreeSet`s.
249///
250/// This `struct` is created by the [`intersection`] method on [`BTreeSet`].
251/// See its documentation for more.
252///
253/// [`intersection`]: BTreeSet::intersection
254#[must_use = "this returns the intersection as an iterator, \
255              without modifying either input set"]
256#[stable(feature = "rust1", since = "1.0.0")]
257pub struct Intersection<
258    'a,
259    T: 'a,
260    #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + Clone = Global,
261> {
262    inner: IntersectionInner<'a, T, A>,
263}
264enum IntersectionInner<'a, T: 'a, A: Allocator + Clone> {
265    Stitch {
266        // iterate similarly sized sets jointly, spotting matches along the way
267        a: Iter<'a, T>,
268        b: Iter<'a, T>,
269    },
270    Search {
271        // iterate a small set, look up in the large set
272        small_iter: Iter<'a, T>,
273        large_set: &'a BTreeSet<T, A>,
274    },
275    Answer(Option<&'a T>), // return a specific element or emptiness
276}
277
278// Explicit Debug impl necessary because of issue #26925
279impl<T: Debug, A: Allocator + Clone> Debug for IntersectionInner<'_, T, A> {
280    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
281        match self {
282            IntersectionInner::Stitch { a, b } => {
283                f.debug_struct("Stitch").field("a", a).field("b", b).finish()
284            }
285            IntersectionInner::Search { small_iter, large_set } => f
286                .debug_struct("Search")
287                .field("small_iter", small_iter)
288                .field("large_set", large_set)
289                .finish(),
290            IntersectionInner::Answer(x) => f.debug_tuple("Answer").field(x).finish(),
291        }
292    }
293}
294
295#[stable(feature = "collection_debug", since = "1.17.0")]
296impl<T: Debug, A: Allocator + Clone> Debug for Intersection<'_, T, A> {
297    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
298        f.debug_tuple("Intersection").field(&self.inner).finish()
299    }
300}
301
302/// A lazy iterator producing elements in the union of `BTreeSet`s.
303///
304/// This `struct` is created by the [`union`] method on [`BTreeSet`].
305/// See its documentation for more.
306///
307/// [`union`]: BTreeSet::union
308#[must_use = "this returns the union as an iterator, \
309              without modifying either input set"]
310#[stable(feature = "rust1", since = "1.0.0")]
311pub struct Union<'a, T: 'a>(MergeIterInner<Iter<'a, T>>);
312
313#[stable(feature = "collection_debug", since = "1.17.0")]
314impl<T: fmt::Debug> fmt::Debug for Union<'_, T> {
315    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
316        f.debug_tuple("Union").field(&self.0).finish()
317    }
318}
319
320// This constant is used by functions that compare two sets.
321// It estimates the relative size at which searching performs better
322// than iterating, based on the benchmarks in
323// https://github.com/ssomers/rust_bench_btreeset_intersection.
324// It's used to divide rather than multiply sizes, to rule out overflow,
325// and it's a power of two to make that division cheap.
326const ITER_PERFORMANCE_TIPPING_SIZE_DIFF: usize = 16;
327
328impl<T> BTreeSet<T> {
329    /// Makes a new, empty `BTreeSet`.
330    ///
331    /// Does not allocate anything on its own.
332    ///
333    /// # Examples
334    ///
335    /// ```
336    /// # #![allow(unused_mut)]
337    /// use std::collections::BTreeSet;
338    ///
339    /// let mut set: BTreeSet<i32> = BTreeSet::new();
340    /// ```
341    #[stable(feature = "rust1", since = "1.0.0")]
342    #[rustc_const_stable(feature = "const_btree_new", since = "1.66.0")]
343    #[must_use]
344    pub const fn new() -> BTreeSet<T> {
345        BTreeSet { map: BTreeMap::new() }
346    }
347}
348
349impl<T, A: Allocator + Clone> BTreeSet<T, A> {
350    /// Makes a new `BTreeSet` with a reasonable choice of B.
351    ///
352    /// # Examples
353    ///
354    /// ```
355    /// # #![allow(unused_mut)]
356    /// # #![feature(allocator_api)]
357    /// # #![feature(btreemap_alloc)]
358    /// use std::collections::BTreeSet;
359    /// use std::alloc::Global;
360    ///
361    /// let mut set: BTreeSet<i32> = BTreeSet::new_in(Global);
362    /// ```
363    #[unstable(feature = "btreemap_alloc", issue = "32838")]
364    pub const fn new_in(alloc: A) -> BTreeSet<T, A> {
365        BTreeSet { map: BTreeMap::new_in(alloc) }
366    }
367
368    /// Constructs a double-ended iterator over a sub-range of elements in the set.
369    /// The simplest way is to use the range syntax `min..max`, thus `range(min..max)` will
370    /// yield elements from min (inclusive) to max (exclusive).
371    /// The range may also be entered as `(Bound<T>, Bound<T>)`, so for example
372    /// `range((Excluded(4), Included(10)))` will yield a left-exclusive, right-inclusive
373    /// range from 4 to 10.
374    ///
375    /// # Panics
376    ///
377    /// Panics if range `start > end`.
378    /// Panics if range `start == end` and both bounds are `Excluded`.
379    ///
380    /// # Examples
381    ///
382    /// ```
383    /// use std::collections::BTreeSet;
384    /// use std::ops::Bound::Included;
385    ///
386    /// let mut set = BTreeSet::new();
387    /// set.insert(3);
388    /// set.insert(5);
389    /// set.insert(8);
390    /// for &elem in set.range((Included(&4), Included(&8))) {
391    ///     println!("{elem}");
392    /// }
393    /// assert_eq!(Some(&5), set.range(4..).next());
394    /// ```
395    #[stable(feature = "btree_range", since = "1.17.0")]
396    pub fn range<K: ?Sized, R>(&self, range: R) -> Range<'_, T>
397    where
398        K: Ord,
399        T: Borrow<K> + Ord,
400        R: RangeBounds<K>,
401    {
402        Range { iter: self.map.range(range) }
403    }
404
405    /// Visits the elements representing the difference,
406    /// i.e., the elements that are in `self` but not in `other`,
407    /// in ascending order.
408    ///
409    /// # Examples
410    ///
411    /// ```
412    /// use std::collections::BTreeSet;
413    ///
414    /// let mut a = BTreeSet::new();
415    /// a.insert(1);
416    /// a.insert(2);
417    ///
418    /// let mut b = BTreeSet::new();
419    /// b.insert(2);
420    /// b.insert(3);
421    ///
422    /// let diff: Vec<_> = a.difference(&b).cloned().collect();
423    /// assert_eq!(diff, [1]);
424    /// ```
425    #[stable(feature = "rust1", since = "1.0.0")]
426    pub fn difference<'a>(&'a self, other: &'a BTreeSet<T, A>) -> Difference<'a, T, A>
427    where
428        T: Ord,
429    {
430        let (self_min, self_max) =
431            if let (Some(self_min), Some(self_max)) = (self.first(), self.last()) {
432                (self_min, self_max)
433            } else {
434                return Difference { inner: DifferenceInner::Iterate(self.iter()) };
435            };
436        let (other_min, other_max) =
437            if let (Some(other_min), Some(other_max)) = (other.first(), other.last()) {
438                (other_min, other_max)
439            } else {
440                return Difference { inner: DifferenceInner::Iterate(self.iter()) };
441            };
442        Difference {
443            inner: match (self_min.cmp(other_max), self_max.cmp(other_min)) {
444                (Greater, _) | (_, Less) => DifferenceInner::Iterate(self.iter()),
445                (Equal, _) => {
446                    let mut self_iter = self.iter();
447                    self_iter.next();
448                    DifferenceInner::Iterate(self_iter)
449                }
450                (_, Equal) => {
451                    let mut self_iter = self.iter();
452                    self_iter.next_back();
453                    DifferenceInner::Iterate(self_iter)
454                }
455                _ if self.len() <= other.len() / ITER_PERFORMANCE_TIPPING_SIZE_DIFF => {
456                    DifferenceInner::Search { self_iter: self.iter(), other_set: other }
457                }
458                _ => DifferenceInner::Stitch {
459                    self_iter: self.iter(),
460                    other_iter: other.iter().peekable(),
461                },
462            },
463        }
464    }
465
466    /// Visits the elements representing the symmetric difference,
467    /// i.e., the elements that are in `self` or in `other` but not in both,
468    /// in ascending order.
469    ///
470    /// # Examples
471    ///
472    /// ```
473    /// use std::collections::BTreeSet;
474    ///
475    /// let mut a = BTreeSet::new();
476    /// a.insert(1);
477    /// a.insert(2);
478    ///
479    /// let mut b = BTreeSet::new();
480    /// b.insert(2);
481    /// b.insert(3);
482    ///
483    /// let sym_diff: Vec<_> = a.symmetric_difference(&b).cloned().collect();
484    /// assert_eq!(sym_diff, [1, 3]);
485    /// ```
486    #[stable(feature = "rust1", since = "1.0.0")]
487    pub fn symmetric_difference<'a>(
488        &'a self,
489        other: &'a BTreeSet<T, A>,
490    ) -> SymmetricDifference<'a, T>
491    where
492        T: Ord,
493    {
494        SymmetricDifference(MergeIterInner::new(self.iter(), other.iter()))
495    }
496
497    /// Visits the elements representing the intersection,
498    /// i.e., the elements that are both in `self` and `other`,
499    /// in ascending order.
500    ///
501    /// # Examples
502    ///
503    /// ```
504    /// use std::collections::BTreeSet;
505    ///
506    /// let mut a = BTreeSet::new();
507    /// a.insert(1);
508    /// a.insert(2);
509    ///
510    /// let mut b = BTreeSet::new();
511    /// b.insert(2);
512    /// b.insert(3);
513    ///
514    /// let intersection: Vec<_> = a.intersection(&b).cloned().collect();
515    /// assert_eq!(intersection, [2]);
516    /// ```
517    #[stable(feature = "rust1", since = "1.0.0")]
518    pub fn intersection<'a>(&'a self, other: &'a BTreeSet<T, A>) -> Intersection<'a, T, A>
519    where
520        T: Ord,
521    {
522        let (self_min, self_max) =
523            if let (Some(self_min), Some(self_max)) = (self.first(), self.last()) {
524                (self_min, self_max)
525            } else {
526                return Intersection { inner: IntersectionInner::Answer(None) };
527            };
528        let (other_min, other_max) =
529            if let (Some(other_min), Some(other_max)) = (other.first(), other.last()) {
530                (other_min, other_max)
531            } else {
532                return Intersection { inner: IntersectionInner::Answer(None) };
533            };
534        Intersection {
535            inner: match (self_min.cmp(other_max), self_max.cmp(other_min)) {
536                (Greater, _) | (_, Less) => IntersectionInner::Answer(None),
537                (Equal, _) => IntersectionInner::Answer(Some(self_min)),
538                (_, Equal) => IntersectionInner::Answer(Some(self_max)),
539                _ if self.len() <= other.len() / ITER_PERFORMANCE_TIPPING_SIZE_DIFF => {
540                    IntersectionInner::Search { small_iter: self.iter(), large_set: other }
541                }
542                _ if other.len() <= self.len() / ITER_PERFORMANCE_TIPPING_SIZE_DIFF => {
543                    IntersectionInner::Search { small_iter: other.iter(), large_set: self }
544                }
545                _ => IntersectionInner::Stitch { a: self.iter(), b: other.iter() },
546            },
547        }
548    }
549
550    /// Visits the elements representing the union,
551    /// i.e., all the elements in `self` or `other`, without duplicates,
552    /// in ascending order.
553    ///
554    /// # Examples
555    ///
556    /// ```
557    /// use std::collections::BTreeSet;
558    ///
559    /// let mut a = BTreeSet::new();
560    /// a.insert(1);
561    ///
562    /// let mut b = BTreeSet::new();
563    /// b.insert(2);
564    ///
565    /// let union: Vec<_> = a.union(&b).cloned().collect();
566    /// assert_eq!(union, [1, 2]);
567    /// ```
568    #[stable(feature = "rust1", since = "1.0.0")]
569    pub fn union<'a>(&'a self, other: &'a BTreeSet<T, A>) -> Union<'a, T>
570    where
571        T: Ord,
572    {
573        Union(MergeIterInner::new(self.iter(), other.iter()))
574    }
575
576    /// Clears the set, removing all elements.
577    ///
578    /// # Examples
579    ///
580    /// ```
581    /// use std::collections::BTreeSet;
582    ///
583    /// let mut v = BTreeSet::new();
584    /// v.insert(1);
585    /// v.clear();
586    /// assert!(v.is_empty());
587    /// ```
588    #[stable(feature = "rust1", since = "1.0.0")]
589    pub fn clear(&mut self)
590    where
591        A: Clone,
592    {
593        self.map.clear()
594    }
595
596    /// Returns `true` if the set contains an element equal to the value.
597    ///
598    /// The value may be any borrowed form of the set's element type,
599    /// but the ordering on the borrowed form *must* match the
600    /// ordering on the element type.
601    ///
602    /// # Examples
603    ///
604    /// ```
605    /// use std::collections::BTreeSet;
606    ///
607    /// let set = BTreeSet::from([1, 2, 3]);
608    /// assert_eq!(set.contains(&1), true);
609    /// assert_eq!(set.contains(&4), false);
610    /// ```
611    #[stable(feature = "rust1", since = "1.0.0")]
612    pub fn contains<Q: ?Sized>(&self, value: &Q) -> bool
613    where
614        T: Borrow<Q> + Ord,
615        Q: Ord,
616    {
617        self.map.contains_key(value)
618    }
619
620    /// Returns a reference to the element in the set, if any, that is equal to
621    /// the value.
622    ///
623    /// The value may be any borrowed form of the set's element type,
624    /// but the ordering on the borrowed form *must* match the
625    /// ordering on the element type.
626    ///
627    /// # Examples
628    ///
629    /// ```
630    /// use std::collections::BTreeSet;
631    ///
632    /// let set = BTreeSet::from([1, 2, 3]);
633    /// assert_eq!(set.get(&2), Some(&2));
634    /// assert_eq!(set.get(&4), None);
635    /// ```
636    #[stable(feature = "set_recovery", since = "1.9.0")]
637    pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T>
638    where
639        T: Borrow<Q> + Ord,
640        Q: Ord,
641    {
642        self.map.get_key_value(value).map(|(k, _)| k)
643    }
644
645    /// Returns `true` if `self` has no elements in common with `other`.
646    /// This is equivalent to checking for an empty intersection.
647    ///
648    /// # Examples
649    ///
650    /// ```
651    /// use std::collections::BTreeSet;
652    ///
653    /// let a = BTreeSet::from([1, 2, 3]);
654    /// let mut b = BTreeSet::new();
655    ///
656    /// assert_eq!(a.is_disjoint(&b), true);
657    /// b.insert(4);
658    /// assert_eq!(a.is_disjoint(&b), true);
659    /// b.insert(1);
660    /// assert_eq!(a.is_disjoint(&b), false);
661    /// ```
662    #[must_use]
663    #[stable(feature = "rust1", since = "1.0.0")]
664    pub fn is_disjoint(&self, other: &BTreeSet<T, A>) -> bool
665    where
666        T: Ord,
667    {
668        self.intersection(other).next().is_none()
669    }
670
671    /// Returns `true` if the set is a subset of another,
672    /// i.e., `other` contains at least all the elements in `self`.
673    ///
674    /// # Examples
675    ///
676    /// ```
677    /// use std::collections::BTreeSet;
678    ///
679    /// let sup = BTreeSet::from([1, 2, 3]);
680    /// let mut set = BTreeSet::new();
681    ///
682    /// assert_eq!(set.is_subset(&sup), true);
683    /// set.insert(2);
684    /// assert_eq!(set.is_subset(&sup), true);
685    /// set.insert(4);
686    /// assert_eq!(set.is_subset(&sup), false);
687    /// ```
688    #[must_use]
689    #[stable(feature = "rust1", since = "1.0.0")]
690    pub fn is_subset(&self, other: &BTreeSet<T, A>) -> bool
691    where
692        T: Ord,
693    {
694        // Same result as self.difference(other).next().is_none()
695        // but the code below is faster (hugely in some cases).
696        if self.len() > other.len() {
697            return false;
698        }
699        let (self_min, self_max) =
700            if let (Some(self_min), Some(self_max)) = (self.first(), self.last()) {
701                (self_min, self_max)
702            } else {
703                return true; // self is empty
704            };
705        let (other_min, other_max) =
706            if let (Some(other_min), Some(other_max)) = (other.first(), other.last()) {
707                (other_min, other_max)
708            } else {
709                return false; // other is empty
710            };
711        let mut self_iter = self.iter();
712        match self_min.cmp(other_min) {
713            Less => return false,
714            Equal => {
715                self_iter.next();
716            }
717            Greater => (),
718        }
719        match self_max.cmp(other_max) {
720            Greater => return false,
721            Equal => {
722                self_iter.next_back();
723            }
724            Less => (),
725        }
726        if self_iter.len() <= other.len() / ITER_PERFORMANCE_TIPPING_SIZE_DIFF {
727            for next in self_iter {
728                if !other.contains(next) {
729                    return false;
730                }
731            }
732        } else {
733            let mut other_iter = other.iter();
734            other_iter.next();
735            other_iter.next_back();
736            let mut self_next = self_iter.next();
737            while let Some(self1) = self_next {
738                match other_iter.next().map_or(Less, |other1| self1.cmp(other1)) {
739                    Less => return false,
740                    Equal => self_next = self_iter.next(),
741                    Greater => (),
742                }
743            }
744        }
745        true
746    }
747
748    /// Returns `true` if the set is a superset of another,
749    /// i.e., `self` contains at least all the elements in `other`.
750    ///
751    /// # Examples
752    ///
753    /// ```
754    /// use std::collections::BTreeSet;
755    ///
756    /// let sub = BTreeSet::from([1, 2]);
757    /// let mut set = BTreeSet::new();
758    ///
759    /// assert_eq!(set.is_superset(&sub), false);
760    ///
761    /// set.insert(0);
762    /// set.insert(1);
763    /// assert_eq!(set.is_superset(&sub), false);
764    ///
765    /// set.insert(2);
766    /// assert_eq!(set.is_superset(&sub), true);
767    /// ```
768    #[must_use]
769    #[stable(feature = "rust1", since = "1.0.0")]
770    pub fn is_superset(&self, other: &BTreeSet<T, A>) -> bool
771    where
772        T: Ord,
773    {
774        other.is_subset(self)
775    }
776
777    /// Returns a reference to the first element in the set, if any.
778    /// This element is always the minimum of all elements in the set.
779    ///
780    /// # Examples
781    ///
782    /// Basic usage:
783    ///
784    /// ```
785    /// use std::collections::BTreeSet;
786    ///
787    /// let mut set = BTreeSet::new();
788    /// assert_eq!(set.first(), None);
789    /// set.insert(1);
790    /// assert_eq!(set.first(), Some(&1));
791    /// set.insert(2);
792    /// assert_eq!(set.first(), Some(&1));
793    /// ```
794    #[must_use]
795    #[stable(feature = "map_first_last", since = "1.66.0")]
796    #[rustc_confusables("front")]
797    pub fn first(&self) -> Option<&T>
798    where
799        T: Ord,
800    {
801        self.map.first_key_value().map(|(k, _)| k)
802    }
803
804    /// Returns a reference to the last element in the set, if any.
805    /// This element is always the maximum of all elements in the set.
806    ///
807    /// # Examples
808    ///
809    /// Basic usage:
810    ///
811    /// ```
812    /// use std::collections::BTreeSet;
813    ///
814    /// let mut set = BTreeSet::new();
815    /// assert_eq!(set.last(), None);
816    /// set.insert(1);
817    /// assert_eq!(set.last(), Some(&1));
818    /// set.insert(2);
819    /// assert_eq!(set.last(), Some(&2));
820    /// ```
821    #[must_use]
822    #[stable(feature = "map_first_last", since = "1.66.0")]
823    #[rustc_confusables("back")]
824    pub fn last(&self) -> Option<&T>
825    where
826        T: Ord,
827    {
828        self.map.last_key_value().map(|(k, _)| k)
829    }
830
831    /// Removes the first element from the set and returns it, if any.
832    /// The first element is always the minimum element in the set.
833    ///
834    /// # Examples
835    ///
836    /// ```
837    /// use std::collections::BTreeSet;
838    ///
839    /// let mut set = BTreeSet::new();
840    ///
841    /// set.insert(1);
842    /// while let Some(n) = set.pop_first() {
843    ///     assert_eq!(n, 1);
844    /// }
845    /// assert!(set.is_empty());
846    /// ```
847    #[stable(feature = "map_first_last", since = "1.66.0")]
848    pub fn pop_first(&mut self) -> Option<T>
849    where
850        T: Ord,
851    {
852        self.map.pop_first().map(|kv| kv.0)
853    }
854
855    /// Removes the last element from the set and returns it, if any.
856    /// The last element is always the maximum element in the set.
857    ///
858    /// # Examples
859    ///
860    /// ```
861    /// use std::collections::BTreeSet;
862    ///
863    /// let mut set = BTreeSet::new();
864    ///
865    /// set.insert(1);
866    /// while let Some(n) = set.pop_last() {
867    ///     assert_eq!(n, 1);
868    /// }
869    /// assert!(set.is_empty());
870    /// ```
871    #[stable(feature = "map_first_last", since = "1.66.0")]
872    pub fn pop_last(&mut self) -> Option<T>
873    where
874        T: Ord,
875    {
876        self.map.pop_last().map(|kv| kv.0)
877    }
878
879    /// Adds a value to the set.
880    ///
881    /// Returns whether the value was newly inserted. That is:
882    ///
883    /// - If the set did not previously contain an equal value, `true` is
884    ///   returned.
885    /// - If the set already contained an equal value, `false` is returned, and
886    ///   the entry is not updated.
887    ///
888    /// See the [module-level documentation] for more.
889    ///
890    /// [module-level documentation]: index.html#insert-and-complex-keys
891    ///
892    /// # Examples
893    ///
894    /// ```
895    /// use std::collections::BTreeSet;
896    ///
897    /// let mut set = BTreeSet::new();
898    ///
899    /// assert_eq!(set.insert(2), true);
900    /// assert_eq!(set.insert(2), false);
901    /// assert_eq!(set.len(), 1);
902    /// ```
903    #[stable(feature = "rust1", since = "1.0.0")]
904    #[rustc_confusables("push", "put")]
905    pub fn insert(&mut self, value: T) -> bool
906    where
907        T: Ord,
908    {
909        self.map.insert(value, SetValZST::default()).is_none()
910    }
911
912    /// Adds a value to the set, replacing the existing element, if any, that is
913    /// equal to the value. Returns the replaced element.
914    ///
915    /// # Examples
916    ///
917    /// ```
918    /// use std::collections::BTreeSet;
919    ///
920    /// let mut set = BTreeSet::new();
921    /// set.insert(Vec::<i32>::new());
922    ///
923    /// assert_eq!(set.get(&[][..]).unwrap().capacity(), 0);
924    /// set.replace(Vec::with_capacity(10));
925    /// assert_eq!(set.get(&[][..]).unwrap().capacity(), 10);
926    /// ```
927    #[stable(feature = "set_recovery", since = "1.9.0")]
928    #[rustc_confusables("swap")]
929    pub fn replace(&mut self, value: T) -> Option<T>
930    where
931        T: Ord,
932    {
933        self.map.replace(value)
934    }
935
936    /// Inserts the given `value` into the set if it is not present, then
937    /// returns a reference to the value in the set.
938    ///
939    /// # Examples
940    ///
941    /// ```
942    /// #![feature(btree_set_entry)]
943    ///
944    /// use std::collections::BTreeSet;
945    ///
946    /// let mut set = BTreeSet::from([1, 2, 3]);
947    /// assert_eq!(set.len(), 3);
948    /// assert_eq!(set.get_or_insert(2), &2);
949    /// assert_eq!(set.get_or_insert(100), &100);
950    /// assert_eq!(set.len(), 4); // 100 was inserted
951    /// ```
952    #[inline]
953    #[unstable(feature = "btree_set_entry", issue = "133549")]
954    pub fn get_or_insert(&mut self, value: T) -> &T
955    where
956        T: Ord,
957    {
958        self.map.entry(value).insert_entry(SetValZST).into_key()
959    }
960
961    /// Inserts a value computed from `f` into the set if the given `value` is
962    /// not present, then returns a reference to the value in the set.
963    ///
964    /// # Examples
965    ///
966    /// ```
967    /// #![feature(btree_set_entry)]
968    ///
969    /// use std::collections::BTreeSet;
970    ///
971    /// let mut set: BTreeSet<String> = ["cat", "dog", "horse"]
972    ///     .iter().map(|&pet| pet.to_owned()).collect();
973    ///
974    /// assert_eq!(set.len(), 3);
975    /// for &pet in &["cat", "dog", "fish"] {
976    ///     let value = set.get_or_insert_with(pet, str::to_owned);
977    ///     assert_eq!(value, pet);
978    /// }
979    /// assert_eq!(set.len(), 4); // a new "fish" was inserted
980    /// ```
981    #[inline]
982    #[unstable(feature = "btree_set_entry", issue = "133549")]
983    pub fn get_or_insert_with<Q: ?Sized, F>(&mut self, value: &Q, f: F) -> &T
984    where
985        T: Borrow<Q> + Ord,
986        Q: Ord,
987        F: FnOnce(&Q) -> T,
988    {
989        self.map.get_or_insert_with(value, f)
990    }
991
992    /// Gets the given value's corresponding entry in the set for in-place manipulation.
993    ///
994    /// # Examples
995    ///
996    /// ```
997    /// #![feature(btree_set_entry)]
998    ///
999    /// use std::collections::BTreeSet;
1000    /// use std::collections::btree_set::Entry::*;
1001    ///
1002    /// let mut singles = BTreeSet::new();
1003    /// let mut dupes = BTreeSet::new();
1004    ///
1005    /// for ch in "a short treatise on fungi".chars() {
1006    ///     if let Vacant(dupe_entry) = dupes.entry(ch) {
1007    ///         // We haven't already seen a duplicate, so
1008    ///         // check if we've at least seen it once.
1009    ///         match singles.entry(ch) {
1010    ///             Vacant(single_entry) => {
1011    ///                 // We found a new character for the first time.
1012    ///                 single_entry.insert()
1013    ///             }
1014    ///             Occupied(single_entry) => {
1015    ///                 // We've already seen this once, "move" it to dupes.
1016    ///                 single_entry.remove();
1017    ///                 dupe_entry.insert();
1018    ///             }
1019    ///         }
1020    ///     }
1021    /// }
1022    ///
1023    /// assert!(!singles.contains(&'t') && dupes.contains(&'t'));
1024    /// assert!(singles.contains(&'u') && !dupes.contains(&'u'));
1025    /// assert!(!singles.contains(&'v') && !dupes.contains(&'v'));
1026    /// ```
1027    #[inline]
1028    #[unstable(feature = "btree_set_entry", issue = "133549")]
1029    pub fn entry(&mut self, value: T) -> Entry<'_, T, A>
1030    where
1031        T: Ord,
1032    {
1033        match self.map.entry(value) {
1034            map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry { inner: entry }),
1035            map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry { inner: entry }),
1036        }
1037    }
1038
1039    /// If the set contains an element equal to the value, removes it from the
1040    /// set and drops it. Returns whether such an element was present.
1041    ///
1042    /// The value may be any borrowed form of the set's element type,
1043    /// but the ordering on the borrowed form *must* match the
1044    /// ordering on the element type.
1045    ///
1046    /// # Examples
1047    ///
1048    /// ```
1049    /// use std::collections::BTreeSet;
1050    ///
1051    /// let mut set = BTreeSet::new();
1052    ///
1053    /// set.insert(2);
1054    /// assert_eq!(set.remove(&2), true);
1055    /// assert_eq!(set.remove(&2), false);
1056    /// ```
1057    #[stable(feature = "rust1", since = "1.0.0")]
1058    pub fn remove<Q: ?Sized>(&mut self, value: &Q) -> bool
1059    where
1060        T: Borrow<Q> + Ord,
1061        Q: Ord,
1062    {
1063        self.map.remove(value).is_some()
1064    }
1065
1066    /// Removes and returns the element in the set, if any, that is equal to
1067    /// the value.
1068    ///
1069    /// The value may be any borrowed form of the set's element type,
1070    /// but the ordering on the borrowed form *must* match the
1071    /// ordering on the element type.
1072    ///
1073    /// # Examples
1074    ///
1075    /// ```
1076    /// use std::collections::BTreeSet;
1077    ///
1078    /// let mut set = BTreeSet::from([1, 2, 3]);
1079    /// assert_eq!(set.take(&2), Some(2));
1080    /// assert_eq!(set.take(&2), None);
1081    /// ```
1082    #[stable(feature = "set_recovery", since = "1.9.0")]
1083    pub fn take<Q: ?Sized>(&mut self, value: &Q) -> Option<T>
1084    where
1085        T: Borrow<Q> + Ord,
1086        Q: Ord,
1087    {
1088        self.map.remove_entry(value).map(|(k, _)| k)
1089    }
1090
1091    /// Retains only the elements specified by the predicate.
1092    ///
1093    /// In other words, remove all elements `e` for which `f(&e)` returns `false`.
1094    /// The elements are visited in ascending order.
1095    ///
1096    /// # Examples
1097    ///
1098    /// ```
1099    /// use std::collections::BTreeSet;
1100    ///
1101    /// let mut set = BTreeSet::from([1, 2, 3, 4, 5, 6]);
1102    /// // Keep only the even numbers.
1103    /// set.retain(|&k| k % 2 == 0);
1104    /// assert!(set.iter().eq([2, 4, 6].iter()));
1105    /// ```
1106    #[stable(feature = "btree_retain", since = "1.53.0")]
1107    pub fn retain<F>(&mut self, mut f: F)
1108    where
1109        T: Ord,
1110        F: FnMut(&T) -> bool,
1111    {
1112        self.extract_if(.., |v| !f(v)).for_each(drop);
1113    }
1114
1115    /// Moves all elements from `other` into `self`, leaving `other` empty.
1116    ///
1117    /// # Examples
1118    ///
1119    /// ```
1120    /// use std::collections::BTreeSet;
1121    ///
1122    /// let mut a = BTreeSet::new();
1123    /// a.insert(1);
1124    /// a.insert(2);
1125    /// a.insert(3);
1126    ///
1127    /// let mut b = BTreeSet::new();
1128    /// b.insert(3);
1129    /// b.insert(4);
1130    /// b.insert(5);
1131    ///
1132    /// a.append(&mut b);
1133    ///
1134    /// assert_eq!(a.len(), 5);
1135    /// assert_eq!(b.len(), 0);
1136    ///
1137    /// assert!(a.contains(&1));
1138    /// assert!(a.contains(&2));
1139    /// assert!(a.contains(&3));
1140    /// assert!(a.contains(&4));
1141    /// assert!(a.contains(&5));
1142    /// ```
1143    #[stable(feature = "btree_append", since = "1.11.0")]
1144    pub fn append(&mut self, other: &mut Self)
1145    where
1146        T: Ord,
1147        A: Clone,
1148    {
1149        self.map.append(&mut other.map);
1150    }
1151
1152    /// Splits the collection into two at the value. Returns a new collection
1153    /// with all elements greater than or equal to the value.
1154    ///
1155    /// # Examples
1156    ///
1157    /// Basic usage:
1158    ///
1159    /// ```
1160    /// use std::collections::BTreeSet;
1161    ///
1162    /// let mut a = BTreeSet::new();
1163    /// a.insert(1);
1164    /// a.insert(2);
1165    /// a.insert(3);
1166    /// a.insert(17);
1167    /// a.insert(41);
1168    ///
1169    /// let b = a.split_off(&3);
1170    ///
1171    /// assert_eq!(a.len(), 2);
1172    /// assert_eq!(b.len(), 3);
1173    ///
1174    /// assert!(a.contains(&1));
1175    /// assert!(a.contains(&2));
1176    ///
1177    /// assert!(b.contains(&3));
1178    /// assert!(b.contains(&17));
1179    /// assert!(b.contains(&41));
1180    /// ```
1181    #[stable(feature = "btree_split_off", since = "1.11.0")]
1182    pub fn split_off<Q: ?Sized + Ord>(&mut self, value: &Q) -> Self
1183    where
1184        T: Borrow<Q> + Ord,
1185        A: Clone,
1186    {
1187        BTreeSet { map: self.map.split_off(value) }
1188    }
1189
1190    /// Creates an iterator that visits elements in the specified range in ascending order and
1191    /// uses a closure to determine if an element should be removed.
1192    ///
1193    /// If the closure returns `true`, the element is removed from the set and
1194    /// yielded. If the closure returns `false`, or panics, the element remains
1195    /// in the set and will not be yielded.
1196    ///
1197    /// If the returned `ExtractIf` is not exhausted, e.g. because it is dropped without iterating
1198    /// or the iteration short-circuits, then the remaining elements will be retained.
1199    /// Use [`retain`] with a negated predicate if you do not need the returned iterator.
1200    ///
1201    /// [`retain`]: BTreeSet::retain
1202    /// # Examples
1203    ///
1204    /// ```
1205    /// use std::collections::BTreeSet;
1206    ///
1207    /// // Splitting a set into even and odd values, reusing the original set:
1208    /// let mut set: BTreeSet<i32> = (0..8).collect();
1209    /// let evens: BTreeSet<_> = set.extract_if(.., |v| v % 2 == 0).collect();
1210    /// let odds = set;
1211    /// assert_eq!(evens.into_iter().collect::<Vec<_>>(), vec![0, 2, 4, 6]);
1212    /// assert_eq!(odds.into_iter().collect::<Vec<_>>(), vec![1, 3, 5, 7]);
1213    ///
1214    /// // Splitting a set into low and high halves, reusing the original set:
1215    /// let mut set: BTreeSet<i32> = (0..8).collect();
1216    /// let low: BTreeSet<_> = set.extract_if(0..4, |_v| true).collect();
1217    /// let high = set;
1218    /// assert_eq!(low.into_iter().collect::<Vec<_>>(), [0, 1, 2, 3]);
1219    /// assert_eq!(high.into_iter().collect::<Vec<_>>(), [4, 5, 6, 7]);
1220    /// ```
1221    #[stable(feature = "btree_extract_if", since = "CURRENT_RUSTC_VERSION")]
1222    pub fn extract_if<F, R>(&mut self, range: R, pred: F) -> ExtractIf<'_, T, R, F, A>
1223    where
1224        T: Ord,
1225        R: RangeBounds<T>,
1226        F: FnMut(&T) -> bool,
1227    {
1228        let (inner, alloc) = self.map.extract_if_inner(range);
1229        ExtractIf { pred, inner, alloc }
1230    }
1231
1232    /// Gets an iterator that visits the elements in the `BTreeSet` in ascending
1233    /// order.
1234    ///
1235    /// # Examples
1236    ///
1237    /// ```
1238    /// use std::collections::BTreeSet;
1239    ///
1240    /// let set = BTreeSet::from([3, 1, 2]);
1241    /// let mut set_iter = set.iter();
1242    /// assert_eq!(set_iter.next(), Some(&1));
1243    /// assert_eq!(set_iter.next(), Some(&2));
1244    /// assert_eq!(set_iter.next(), Some(&3));
1245    /// assert_eq!(set_iter.next(), None);
1246    /// ```
1247    #[stable(feature = "rust1", since = "1.0.0")]
1248    #[cfg_attr(not(test), rustc_diagnostic_item = "btreeset_iter")]
1249    pub fn iter(&self) -> Iter<'_, T> {
1250        Iter { iter: self.map.keys() }
1251    }
1252
1253    /// Returns the number of elements in the set.
1254    ///
1255    /// # Examples
1256    ///
1257    /// ```
1258    /// use std::collections::BTreeSet;
1259    ///
1260    /// let mut v = BTreeSet::new();
1261    /// assert_eq!(v.len(), 0);
1262    /// v.insert(1);
1263    /// assert_eq!(v.len(), 1);
1264    /// ```
1265    #[must_use]
1266    #[stable(feature = "rust1", since = "1.0.0")]
1267    #[rustc_const_unstable(
1268        feature = "const_btree_len",
1269        issue = "71835",
1270        implied_by = "const_btree_new"
1271    )]
1272    #[rustc_confusables("length", "size")]
1273    pub const fn len(&self) -> usize {
1274        self.map.len()
1275    }
1276
1277    /// Returns `true` if the set contains no elements.
1278    ///
1279    /// # Examples
1280    ///
1281    /// ```
1282    /// use std::collections::BTreeSet;
1283    ///
1284    /// let mut v = BTreeSet::new();
1285    /// assert!(v.is_empty());
1286    /// v.insert(1);
1287    /// assert!(!v.is_empty());
1288    /// ```
1289    #[must_use]
1290    #[stable(feature = "rust1", since = "1.0.0")]
1291    #[rustc_const_unstable(
1292        feature = "const_btree_len",
1293        issue = "71835",
1294        implied_by = "const_btree_new"
1295    )]
1296    pub const fn is_empty(&self) -> bool {
1297        self.len() == 0
1298    }
1299
1300    /// Returns a [`Cursor`] pointing at the gap before the smallest element
1301    /// greater than the given bound.
1302    ///
1303    /// Passing `Bound::Included(x)` will return a cursor pointing to the
1304    /// gap before the smallest element greater than or equal to `x`.
1305    ///
1306    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
1307    /// gap before the smallest element greater than `x`.
1308    ///
1309    /// Passing `Bound::Unbounded` will return a cursor pointing to the
1310    /// gap before the smallest element in the set.
1311    ///
1312    /// # Examples
1313    ///
1314    /// ```
1315    /// #![feature(btree_cursors)]
1316    ///
1317    /// use std::collections::BTreeSet;
1318    /// use std::ops::Bound;
1319    ///
1320    /// let set = BTreeSet::from([1, 2, 3, 4]);
1321    ///
1322    /// let cursor = set.lower_bound(Bound::Included(&2));
1323    /// assert_eq!(cursor.peek_prev(), Some(&1));
1324    /// assert_eq!(cursor.peek_next(), Some(&2));
1325    ///
1326    /// let cursor = set.lower_bound(Bound::Excluded(&2));
1327    /// assert_eq!(cursor.peek_prev(), Some(&2));
1328    /// assert_eq!(cursor.peek_next(), Some(&3));
1329    ///
1330    /// let cursor = set.lower_bound(Bound::Unbounded);
1331    /// assert_eq!(cursor.peek_prev(), None);
1332    /// assert_eq!(cursor.peek_next(), Some(&1));
1333    /// ```
1334    #[unstable(feature = "btree_cursors", issue = "107540")]
1335    pub fn lower_bound<Q: ?Sized>(&self, bound: Bound<&Q>) -> Cursor<'_, T>
1336    where
1337        T: Borrow<Q> + Ord,
1338        Q: Ord,
1339    {
1340        Cursor { inner: self.map.lower_bound(bound) }
1341    }
1342
1343    /// Returns a [`CursorMut`] pointing at the gap before the smallest element
1344    /// greater than the given bound.
1345    ///
1346    /// Passing `Bound::Included(x)` will return a cursor pointing to the
1347    /// gap before the smallest element greater than or equal to `x`.
1348    ///
1349    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
1350    /// gap before the smallest element greater than `x`.
1351    ///
1352    /// Passing `Bound::Unbounded` will return a cursor pointing to the
1353    /// gap before the smallest element in the set.
1354    ///
1355    /// # Examples
1356    ///
1357    /// ```
1358    /// #![feature(btree_cursors)]
1359    ///
1360    /// use std::collections::BTreeSet;
1361    /// use std::ops::Bound;
1362    ///
1363    /// let mut set = BTreeSet::from([1, 2, 3, 4]);
1364    ///
1365    /// let mut cursor = set.lower_bound_mut(Bound::Included(&2));
1366    /// assert_eq!(cursor.peek_prev(), Some(&1));
1367    /// assert_eq!(cursor.peek_next(), Some(&2));
1368    ///
1369    /// let mut cursor = set.lower_bound_mut(Bound::Excluded(&2));
1370    /// assert_eq!(cursor.peek_prev(), Some(&2));
1371    /// assert_eq!(cursor.peek_next(), Some(&3));
1372    ///
1373    /// let mut cursor = set.lower_bound_mut(Bound::Unbounded);
1374    /// assert_eq!(cursor.peek_prev(), None);
1375    /// assert_eq!(cursor.peek_next(), Some(&1));
1376    /// ```
1377    #[unstable(feature = "btree_cursors", issue = "107540")]
1378    pub fn lower_bound_mut<Q: ?Sized>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, T, A>
1379    where
1380        T: Borrow<Q> + Ord,
1381        Q: Ord,
1382    {
1383        CursorMut { inner: self.map.lower_bound_mut(bound) }
1384    }
1385
1386    /// Returns a [`Cursor`] pointing at the gap after the greatest element
1387    /// smaller than the given bound.
1388    ///
1389    /// Passing `Bound::Included(x)` will return a cursor pointing to the
1390    /// gap after the greatest element smaller than or equal to `x`.
1391    ///
1392    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
1393    /// gap after the greatest element smaller than `x`.
1394    ///
1395    /// Passing `Bound::Unbounded` will return a cursor pointing to the
1396    /// gap after the greatest element in the set.
1397    ///
1398    /// # Examples
1399    ///
1400    /// ```
1401    /// #![feature(btree_cursors)]
1402    ///
1403    /// use std::collections::BTreeSet;
1404    /// use std::ops::Bound;
1405    ///
1406    /// let set = BTreeSet::from([1, 2, 3, 4]);
1407    ///
1408    /// let cursor = set.upper_bound(Bound::Included(&3));
1409    /// assert_eq!(cursor.peek_prev(), Some(&3));
1410    /// assert_eq!(cursor.peek_next(), Some(&4));
1411    ///
1412    /// let cursor = set.upper_bound(Bound::Excluded(&3));
1413    /// assert_eq!(cursor.peek_prev(), Some(&2));
1414    /// assert_eq!(cursor.peek_next(), Some(&3));
1415    ///
1416    /// let cursor = set.upper_bound(Bound::Unbounded);
1417    /// assert_eq!(cursor.peek_prev(), Some(&4));
1418    /// assert_eq!(cursor.peek_next(), None);
1419    /// ```
1420    #[unstable(feature = "btree_cursors", issue = "107540")]
1421    pub fn upper_bound<Q: ?Sized>(&self, bound: Bound<&Q>) -> Cursor<'_, T>
1422    where
1423        T: Borrow<Q> + Ord,
1424        Q: Ord,
1425    {
1426        Cursor { inner: self.map.upper_bound(bound) }
1427    }
1428
1429    /// Returns a [`CursorMut`] pointing at the gap after the greatest element
1430    /// smaller than the given bound.
1431    ///
1432    /// Passing `Bound::Included(x)` will return a cursor pointing to the
1433    /// gap after the greatest element smaller than or equal to `x`.
1434    ///
1435    /// Passing `Bound::Excluded(x)` will return a cursor pointing to the
1436    /// gap after the greatest element smaller than `x`.
1437    ///
1438    /// Passing `Bound::Unbounded` will return a cursor pointing to the
1439    /// gap after the greatest element in the set.
1440    ///
1441    /// # Examples
1442    ///
1443    /// ```
1444    /// #![feature(btree_cursors)]
1445    ///
1446    /// use std::collections::BTreeSet;
1447    /// use std::ops::Bound;
1448    ///
1449    /// let mut set = BTreeSet::from([1, 2, 3, 4]);
1450    ///
1451    /// let mut cursor = set.upper_bound_mut(Bound::Included(&3));
1452    /// assert_eq!(cursor.peek_prev(), Some(&3));
1453    /// assert_eq!(cursor.peek_next(), Some(&4));
1454    ///
1455    /// let mut cursor = set.upper_bound_mut(Bound::Excluded(&3));
1456    /// assert_eq!(cursor.peek_prev(), Some(&2));
1457    /// assert_eq!(cursor.peek_next(), Some(&3));
1458    ///
1459    /// let mut cursor = set.upper_bound_mut(Bound::Unbounded);
1460    /// assert_eq!(cursor.peek_prev(), Some(&4));
1461    /// assert_eq!(cursor.peek_next(), None);
1462    /// ```
1463    #[unstable(feature = "btree_cursors", issue = "107540")]
1464    pub fn upper_bound_mut<Q: ?Sized>(&mut self, bound: Bound<&Q>) -> CursorMut<'_, T, A>
1465    where
1466        T: Borrow<Q> + Ord,
1467        Q: Ord,
1468    {
1469        CursorMut { inner: self.map.upper_bound_mut(bound) }
1470    }
1471}
1472
1473#[stable(feature = "rust1", since = "1.0.0")]
1474impl<T: Ord> FromIterator<T> for BTreeSet<T> {
1475    fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> BTreeSet<T> {
1476        let mut inputs: Vec<_> = iter.into_iter().collect();
1477
1478        if inputs.is_empty() {
1479            return BTreeSet::new();
1480        }
1481
1482        // use stable sort to preserve the insertion order.
1483        inputs.sort();
1484        BTreeSet::from_sorted_iter(inputs.into_iter(), Global)
1485    }
1486}
1487
1488impl<T: Ord, A: Allocator + Clone> BTreeSet<T, A> {
1489    fn from_sorted_iter<I: Iterator<Item = T>>(iter: I, alloc: A) -> BTreeSet<T, A> {
1490        let iter = iter.map(|k| (k, SetValZST::default()));
1491        let map = BTreeMap::bulk_build_from_sorted_iter(iter, alloc);
1492        BTreeSet { map }
1493    }
1494}
1495
1496#[stable(feature = "std_collections_from_array", since = "1.56.0")]
1497impl<T: Ord, const N: usize> From<[T; N]> for BTreeSet<T> {
1498    /// Converts a `[T; N]` into a `BTreeSet<T>`.
1499    ///
1500    /// If the array contains any equal values,
1501    /// all but one will be dropped.
1502    ///
1503    /// # Examples
1504    ///
1505    /// ```
1506    /// use std::collections::BTreeSet;
1507    ///
1508    /// let set1 = BTreeSet::from([1, 2, 3, 4]);
1509    /// let set2: BTreeSet<_> = [1, 2, 3, 4].into();
1510    /// assert_eq!(set1, set2);
1511    /// ```
1512    fn from(mut arr: [T; N]) -> Self {
1513        if N == 0 {
1514            return BTreeSet::new();
1515        }
1516
1517        // use stable sort to preserve the insertion order.
1518        arr.sort();
1519        BTreeSet::from_sorted_iter(IntoIterator::into_iter(arr), Global)
1520    }
1521}
1522
1523#[stable(feature = "rust1", since = "1.0.0")]
1524impl<T, A: Allocator + Clone> IntoIterator for BTreeSet<T, A> {
1525    type Item = T;
1526    type IntoIter = IntoIter<T, A>;
1527
1528    /// Gets an iterator for moving out the `BTreeSet`'s contents in ascending order.
1529    ///
1530    /// # Examples
1531    ///
1532    /// ```
1533    /// use std::collections::BTreeSet;
1534    ///
1535    /// let set = BTreeSet::from([1, 2, 3, 4]);
1536    ///
1537    /// let v: Vec<_> = set.into_iter().collect();
1538    /// assert_eq!(v, [1, 2, 3, 4]);
1539    /// ```
1540    fn into_iter(self) -> IntoIter<T, A> {
1541        IntoIter { iter: self.map.into_iter() }
1542    }
1543}
1544
1545#[stable(feature = "rust1", since = "1.0.0")]
1546impl<'a, T, A: Allocator + Clone> IntoIterator for &'a BTreeSet<T, A> {
1547    type Item = &'a T;
1548    type IntoIter = Iter<'a, T>;
1549
1550    fn into_iter(self) -> Iter<'a, T> {
1551        self.iter()
1552    }
1553}
1554
1555/// An iterator produced by calling `extract_if` on BTreeSet.
1556#[stable(feature = "btree_extract_if", since = "CURRENT_RUSTC_VERSION")]
1557#[must_use = "iterators are lazy and do nothing unless consumed"]
1558pub struct ExtractIf<
1559    'a,
1560    T,
1561    R,
1562    F,
1563    #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator + Clone = Global,
1564> {
1565    pred: F,
1566    inner: super::map::ExtractIfInner<'a, T, SetValZST, R>,
1567    /// The BTreeMap will outlive this IntoIter so we don't care about drop order for `alloc`.
1568    alloc: A,
1569}
1570
1571#[stable(feature = "btree_extract_if", since = "CURRENT_RUSTC_VERSION")]
1572impl<T, R, F, A> fmt::Debug for ExtractIf<'_, T, R, F, A>
1573where
1574    T: fmt::Debug,
1575    A: Allocator + Clone,
1576{
1577    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1578        f.debug_struct("ExtractIf")
1579            .field("peek", &self.inner.peek().map(|(k, _)| k))
1580            .finish_non_exhaustive()
1581    }
1582}
1583
1584#[stable(feature = "btree_extract_if", since = "CURRENT_RUSTC_VERSION")]
1585impl<T, R, F, A: Allocator + Clone> Iterator for ExtractIf<'_, T, R, F, A>
1586where
1587    T: PartialOrd,
1588    R: RangeBounds<T>,
1589    F: FnMut(&T) -> bool,
1590{
1591    type Item = T;
1592
1593    fn next(&mut self) -> Option<T> {
1594        let pred = &mut self.pred;
1595        let mut mapped_pred = |k: &T, _v: &mut SetValZST| pred(k);
1596        self.inner.next(&mut mapped_pred, self.alloc.clone()).map(|(k, _)| k)
1597    }
1598
1599    fn size_hint(&self) -> (usize, Option<usize>) {
1600        self.inner.size_hint()
1601    }
1602}
1603
1604#[stable(feature = "btree_extract_if", since = "CURRENT_RUSTC_VERSION")]
1605impl<T, R, F, A: Allocator + Clone> FusedIterator for ExtractIf<'_, T, R, F, A>
1606where
1607    T: PartialOrd,
1608    R: RangeBounds<T>,
1609    F: FnMut(&T) -> bool,
1610{
1611}
1612
1613#[stable(feature = "rust1", since = "1.0.0")]
1614impl<T: Ord, A: Allocator + Clone> Extend<T> for BTreeSet<T, A> {
1615    #[inline]
1616    fn extend<Iter: IntoIterator<Item = T>>(&mut self, iter: Iter) {
1617        iter.into_iter().for_each(move |elem| {
1618            self.insert(elem);
1619        });
1620    }
1621
1622    #[inline]
1623    fn extend_one(&mut self, elem: T) {
1624        self.insert(elem);
1625    }
1626}
1627
1628#[stable(feature = "extend_ref", since = "1.2.0")]
1629impl<'a, T: 'a + Ord + Copy, A: Allocator + Clone> Extend<&'a T> for BTreeSet<T, A> {
1630    fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
1631        self.extend(iter.into_iter().cloned());
1632    }
1633
1634    #[inline]
1635    fn extend_one(&mut self, &elem: &'a T) {
1636        self.insert(elem);
1637    }
1638}
1639
1640#[stable(feature = "rust1", since = "1.0.0")]
1641impl<T> Default for BTreeSet<T> {
1642    /// Creates an empty `BTreeSet`.
1643    fn default() -> BTreeSet<T> {
1644        BTreeSet::new()
1645    }
1646}
1647
1648#[stable(feature = "rust1", since = "1.0.0")]
1649impl<T: Ord + Clone, A: Allocator + Clone> Sub<&BTreeSet<T, A>> for &BTreeSet<T, A> {
1650    type Output = BTreeSet<T, A>;
1651
1652    /// Returns the difference of `self` and `rhs` as a new `BTreeSet<T>`.
1653    ///
1654    /// # Examples
1655    ///
1656    /// ```
1657    /// use std::collections::BTreeSet;
1658    ///
1659    /// let a = BTreeSet::from([1, 2, 3]);
1660    /// let b = BTreeSet::from([3, 4, 5]);
1661    ///
1662    /// let result = &a - &b;
1663    /// assert_eq!(result, BTreeSet::from([1, 2]));
1664    /// ```
1665    fn sub(self, rhs: &BTreeSet<T, A>) -> BTreeSet<T, A> {
1666        BTreeSet::from_sorted_iter(
1667            self.difference(rhs).cloned(),
1668            ManuallyDrop::into_inner(self.map.alloc.clone()),
1669        )
1670    }
1671}
1672
1673#[stable(feature = "rust1", since = "1.0.0")]
1674impl<T: Ord + Clone, A: Allocator + Clone> BitXor<&BTreeSet<T, A>> for &BTreeSet<T, A> {
1675    type Output = BTreeSet<T, A>;
1676
1677    /// Returns the symmetric difference of `self` and `rhs` as a new `BTreeSet<T>`.
1678    ///
1679    /// # Examples
1680    ///
1681    /// ```
1682    /// use std::collections::BTreeSet;
1683    ///
1684    /// let a = BTreeSet::from([1, 2, 3]);
1685    /// let b = BTreeSet::from([2, 3, 4]);
1686    ///
1687    /// let result = &a ^ &b;
1688    /// assert_eq!(result, BTreeSet::from([1, 4]));
1689    /// ```
1690    fn bitxor(self, rhs: &BTreeSet<T, A>) -> BTreeSet<T, A> {
1691        BTreeSet::from_sorted_iter(
1692            self.symmetric_difference(rhs).cloned(),
1693            ManuallyDrop::into_inner(self.map.alloc.clone()),
1694        )
1695    }
1696}
1697
1698#[stable(feature = "rust1", since = "1.0.0")]
1699impl<T: Ord + Clone, A: Allocator + Clone> BitAnd<&BTreeSet<T, A>> for &BTreeSet<T, A> {
1700    type Output = BTreeSet<T, A>;
1701
1702    /// Returns the intersection of `self` and `rhs` as a new `BTreeSet<T>`.
1703    ///
1704    /// # Examples
1705    ///
1706    /// ```
1707    /// use std::collections::BTreeSet;
1708    ///
1709    /// let a = BTreeSet::from([1, 2, 3]);
1710    /// let b = BTreeSet::from([2, 3, 4]);
1711    ///
1712    /// let result = &a & &b;
1713    /// assert_eq!(result, BTreeSet::from([2, 3]));
1714    /// ```
1715    fn bitand(self, rhs: &BTreeSet<T, A>) -> BTreeSet<T, A> {
1716        BTreeSet::from_sorted_iter(
1717            self.intersection(rhs).cloned(),
1718            ManuallyDrop::into_inner(self.map.alloc.clone()),
1719        )
1720    }
1721}
1722
1723#[stable(feature = "rust1", since = "1.0.0")]
1724impl<T: Ord + Clone, A: Allocator + Clone> BitOr<&BTreeSet<T, A>> for &BTreeSet<T, A> {
1725    type Output = BTreeSet<T, A>;
1726
1727    /// Returns the union of `self` and `rhs` as a new `BTreeSet<T>`.
1728    ///
1729    /// # Examples
1730    ///
1731    /// ```
1732    /// use std::collections::BTreeSet;
1733    ///
1734    /// let a = BTreeSet::from([1, 2, 3]);
1735    /// let b = BTreeSet::from([3, 4, 5]);
1736    ///
1737    /// let result = &a | &b;
1738    /// assert_eq!(result, BTreeSet::from([1, 2, 3, 4, 5]));
1739    /// ```
1740    fn bitor(self, rhs: &BTreeSet<T, A>) -> BTreeSet<T, A> {
1741        BTreeSet::from_sorted_iter(
1742            self.union(rhs).cloned(),
1743            ManuallyDrop::into_inner(self.map.alloc.clone()),
1744        )
1745    }
1746}
1747
1748#[stable(feature = "rust1", since = "1.0.0")]
1749impl<T: Debug, A: Allocator + Clone> Debug for BTreeSet<T, A> {
1750    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1751        f.debug_set().entries(self.iter()).finish()
1752    }
1753}
1754
1755#[stable(feature = "rust1", since = "1.0.0")]
1756impl<T> Clone for Iter<'_, T> {
1757    fn clone(&self) -> Self {
1758        Iter { iter: self.iter.clone() }
1759    }
1760}
1761#[stable(feature = "rust1", since = "1.0.0")]
1762impl<'a, T> Iterator for Iter<'a, T> {
1763    type Item = &'a T;
1764
1765    fn next(&mut self) -> Option<&'a T> {
1766        self.iter.next()
1767    }
1768
1769    fn size_hint(&self) -> (usize, Option<usize>) {
1770        self.iter.size_hint()
1771    }
1772
1773    fn last(mut self) -> Option<&'a T> {
1774        self.next_back()
1775    }
1776
1777    fn min(mut self) -> Option<&'a T>
1778    where
1779        &'a T: Ord,
1780    {
1781        self.next()
1782    }
1783
1784    fn max(mut self) -> Option<&'a T>
1785    where
1786        &'a T: Ord,
1787    {
1788        self.next_back()
1789    }
1790}
1791#[stable(feature = "rust1", since = "1.0.0")]
1792impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
1793    fn next_back(&mut self) -> Option<&'a T> {
1794        self.iter.next_back()
1795    }
1796}
1797#[stable(feature = "rust1", since = "1.0.0")]
1798impl<T> ExactSizeIterator for Iter<'_, T> {
1799    fn len(&self) -> usize {
1800        self.iter.len()
1801    }
1802}
1803
1804#[stable(feature = "fused", since = "1.26.0")]
1805impl<T> FusedIterator for Iter<'_, T> {}
1806
1807#[stable(feature = "rust1", since = "1.0.0")]
1808impl<T, A: Allocator + Clone> Iterator for IntoIter<T, A> {
1809    type Item = T;
1810
1811    fn next(&mut self) -> Option<T> {
1812        self.iter.next().map(|(k, _)| k)
1813    }
1814
1815    fn size_hint(&self) -> (usize, Option<usize>) {
1816        self.iter.size_hint()
1817    }
1818}
1819
1820#[stable(feature = "default_iters", since = "1.70.0")]
1821impl<T> Default for Iter<'_, T> {
1822    /// Creates an empty `btree_set::Iter`.
1823    ///
1824    /// ```
1825    /// # use std::collections::btree_set;
1826    /// let iter: btree_set::Iter<'_, u8> = Default::default();
1827    /// assert_eq!(iter.len(), 0);
1828    /// ```
1829    fn default() -> Self {
1830        Iter { iter: Default::default() }
1831    }
1832}
1833
1834#[stable(feature = "rust1", since = "1.0.0")]
1835impl<T, A: Allocator + Clone> DoubleEndedIterator for IntoIter<T, A> {
1836    fn next_back(&mut self) -> Option<T> {
1837        self.iter.next_back().map(|(k, _)| k)
1838    }
1839}
1840#[stable(feature = "rust1", since = "1.0.0")]
1841impl<T, A: Allocator + Clone> ExactSizeIterator for IntoIter<T, A> {
1842    fn len(&self) -> usize {
1843        self.iter.len()
1844    }
1845}
1846
1847#[stable(feature = "fused", since = "1.26.0")]
1848impl<T, A: Allocator + Clone> FusedIterator for IntoIter<T, A> {}
1849
1850#[stable(feature = "default_iters", since = "1.70.0")]
1851impl<T, A> Default for IntoIter<T, A>
1852where
1853    A: Allocator + Default + Clone,
1854{
1855    /// Creates an empty `btree_set::IntoIter`.
1856    ///
1857    /// ```
1858    /// # use std::collections::btree_set;
1859    /// let iter: btree_set::IntoIter<u8> = Default::default();
1860    /// assert_eq!(iter.len(), 0);
1861    /// ```
1862    fn default() -> Self {
1863        IntoIter { iter: Default::default() }
1864    }
1865}
1866
1867#[stable(feature = "btree_range", since = "1.17.0")]
1868impl<T> Clone for Range<'_, T> {
1869    fn clone(&self) -> Self {
1870        Range { iter: self.iter.clone() }
1871    }
1872}
1873
1874#[stable(feature = "btree_range", since = "1.17.0")]
1875impl<'a, T> Iterator for Range<'a, T> {
1876    type Item = &'a T;
1877
1878    fn next(&mut self) -> Option<&'a T> {
1879        self.iter.next().map(|(k, _)| k)
1880    }
1881
1882    fn last(mut self) -> Option<&'a T> {
1883        self.next_back()
1884    }
1885
1886    fn min(mut self) -> Option<&'a T>
1887    where
1888        &'a T: Ord,
1889    {
1890        self.next()
1891    }
1892
1893    fn max(mut self) -> Option<&'a T>
1894    where
1895        &'a T: Ord,
1896    {
1897        self.next_back()
1898    }
1899}
1900
1901#[stable(feature = "btree_range", since = "1.17.0")]
1902impl<'a, T> DoubleEndedIterator for Range<'a, T> {
1903    fn next_back(&mut self) -> Option<&'a T> {
1904        self.iter.next_back().map(|(k, _)| k)
1905    }
1906}
1907
1908#[stable(feature = "fused", since = "1.26.0")]
1909impl<T> FusedIterator for Range<'_, T> {}
1910
1911#[stable(feature = "default_iters", since = "1.70.0")]
1912impl<T> Default for Range<'_, T> {
1913    /// Creates an empty `btree_set::Range`.
1914    ///
1915    /// ```
1916    /// # use std::collections::btree_set;
1917    /// let iter: btree_set::Range<'_, u8> = Default::default();
1918    /// assert_eq!(iter.count(), 0);
1919    /// ```
1920    fn default() -> Self {
1921        Range { iter: Default::default() }
1922    }
1923}
1924
1925#[stable(feature = "rust1", since = "1.0.0")]
1926impl<T, A: Allocator + Clone> Clone for Difference<'_, T, A> {
1927    fn clone(&self) -> Self {
1928        Difference {
1929            inner: match &self.inner {
1930                DifferenceInner::Stitch { self_iter, other_iter } => DifferenceInner::Stitch {
1931                    self_iter: self_iter.clone(),
1932                    other_iter: other_iter.clone(),
1933                },
1934                DifferenceInner::Search { self_iter, other_set } => {
1935                    DifferenceInner::Search { self_iter: self_iter.clone(), other_set }
1936                }
1937                DifferenceInner::Iterate(iter) => DifferenceInner::Iterate(iter.clone()),
1938            },
1939        }
1940    }
1941}
1942#[stable(feature = "rust1", since = "1.0.0")]
1943impl<'a, T: Ord, A: Allocator + Clone> Iterator for Difference<'a, T, A> {
1944    type Item = &'a T;
1945
1946    fn next(&mut self) -> Option<&'a T> {
1947        match &mut self.inner {
1948            DifferenceInner::Stitch { self_iter, other_iter } => {
1949                let mut self_next = self_iter.next()?;
1950                loop {
1951                    match other_iter.peek().map_or(Less, |other_next| self_next.cmp(other_next)) {
1952                        Less => return Some(self_next),
1953                        Equal => {
1954                            self_next = self_iter.next()?;
1955                            other_iter.next();
1956                        }
1957                        Greater => {
1958                            other_iter.next();
1959                        }
1960                    }
1961                }
1962            }
1963            DifferenceInner::Search { self_iter, other_set } => loop {
1964                let self_next = self_iter.next()?;
1965                if !other_set.contains(&self_next) {
1966                    return Some(self_next);
1967                }
1968            },
1969            DifferenceInner::Iterate(iter) => iter.next(),
1970        }
1971    }
1972
1973    fn size_hint(&self) -> (usize, Option<usize>) {
1974        let (self_len, other_len) = match &self.inner {
1975            DifferenceInner::Stitch { self_iter, other_iter } => {
1976                (self_iter.len(), other_iter.len())
1977            }
1978            DifferenceInner::Search { self_iter, other_set } => (self_iter.len(), other_set.len()),
1979            DifferenceInner::Iterate(iter) => (iter.len(), 0),
1980        };
1981        (self_len.saturating_sub(other_len), Some(self_len))
1982    }
1983
1984    fn min(mut self) -> Option<&'a T> {
1985        self.next()
1986    }
1987}
1988
1989#[stable(feature = "fused", since = "1.26.0")]
1990impl<T: Ord, A: Allocator + Clone> FusedIterator for Difference<'_, T, A> {}
1991
1992#[stable(feature = "rust1", since = "1.0.0")]
1993impl<T> Clone for SymmetricDifference<'_, T> {
1994    fn clone(&self) -> Self {
1995        SymmetricDifference(self.0.clone())
1996    }
1997}
1998#[stable(feature = "rust1", since = "1.0.0")]
1999impl<'a, T: Ord> Iterator for SymmetricDifference<'a, T> {
2000    type Item = &'a T;
2001
2002    fn next(&mut self) -> Option<&'a T> {
2003        loop {
2004            let (a_next, b_next) = self.0.nexts(Self::Item::cmp);
2005            if a_next.and(b_next).is_none() {
2006                return a_next.or(b_next);
2007            }
2008        }
2009    }
2010
2011    fn size_hint(&self) -> (usize, Option<usize>) {
2012        let (a_len, b_len) = self.0.lens();
2013        // No checked_add, because even if a and b refer to the same set,
2014        // and T is a zero-sized type, the storage overhead of sets limits
2015        // the number of elements to less than half the range of usize.
2016        (0, Some(a_len + b_len))
2017    }
2018
2019    fn min(mut self) -> Option<&'a T> {
2020        self.next()
2021    }
2022}
2023
2024#[stable(feature = "fused", since = "1.26.0")]
2025impl<T: Ord> FusedIterator for SymmetricDifference<'_, T> {}
2026
2027#[stable(feature = "rust1", since = "1.0.0")]
2028impl<T, A: Allocator + Clone> Clone for Intersection<'_, T, A> {
2029    fn clone(&self) -> Self {
2030        Intersection {
2031            inner: match &self.inner {
2032                IntersectionInner::Stitch { a, b } => {
2033                    IntersectionInner::Stitch { a: a.clone(), b: b.clone() }
2034                }
2035                IntersectionInner::Search { small_iter, large_set } => {
2036                    IntersectionInner::Search { small_iter: small_iter.clone(), large_set }
2037                }
2038                IntersectionInner::Answer(answer) => IntersectionInner::Answer(*answer),
2039            },
2040        }
2041    }
2042}
2043#[stable(feature = "rust1", since = "1.0.0")]
2044impl<'a, T: Ord, A: Allocator + Clone> Iterator for Intersection<'a, T, A> {
2045    type Item = &'a T;
2046
2047    fn next(&mut self) -> Option<&'a T> {
2048        match &mut self.inner {
2049            IntersectionInner::Stitch { a, b } => {
2050                let mut a_next = a.next()?;
2051                let mut b_next = b.next()?;
2052                loop {
2053                    match a_next.cmp(b_next) {
2054                        Less => a_next = a.next()?,
2055                        Greater => b_next = b.next()?,
2056                        Equal => return Some(a_next),
2057                    }
2058                }
2059            }
2060            IntersectionInner::Search { small_iter, large_set } => loop {
2061                let small_next = small_iter.next()?;
2062                if large_set.contains(&small_next) {
2063                    return Some(small_next);
2064                }
2065            },
2066            IntersectionInner::Answer(answer) => answer.take(),
2067        }
2068    }
2069
2070    fn size_hint(&self) -> (usize, Option<usize>) {
2071        match &self.inner {
2072            IntersectionInner::Stitch { a, b } => (0, Some(min(a.len(), b.len()))),
2073            IntersectionInner::Search { small_iter, .. } => (0, Some(small_iter.len())),
2074            IntersectionInner::Answer(None) => (0, Some(0)),
2075            IntersectionInner::Answer(Some(_)) => (1, Some(1)),
2076        }
2077    }
2078
2079    fn min(mut self) -> Option<&'a T> {
2080        self.next()
2081    }
2082}
2083
2084#[stable(feature = "fused", since = "1.26.0")]
2085impl<T: Ord, A: Allocator + Clone> FusedIterator for Intersection<'_, T, A> {}
2086
2087#[stable(feature = "rust1", since = "1.0.0")]
2088impl<T> Clone for Union<'_, T> {
2089    fn clone(&self) -> Self {
2090        Union(self.0.clone())
2091    }
2092}
2093#[stable(feature = "rust1", since = "1.0.0")]
2094impl<'a, T: Ord> Iterator for Union<'a, T> {
2095    type Item = &'a T;
2096
2097    fn next(&mut self) -> Option<&'a T> {
2098        let (a_next, b_next) = self.0.nexts(Self::Item::cmp);
2099        a_next.or(b_next)
2100    }
2101
2102    fn size_hint(&self) -> (usize, Option<usize>) {
2103        let (a_len, b_len) = self.0.lens();
2104        // No checked_add - see SymmetricDifference::size_hint.
2105        (max(a_len, b_len), Some(a_len + b_len))
2106    }
2107
2108    fn min(mut self) -> Option<&'a T> {
2109        self.next()
2110    }
2111}
2112
2113#[stable(feature = "fused", since = "1.26.0")]
2114impl<T: Ord> FusedIterator for Union<'_, T> {}
2115
2116/// A cursor over a `BTreeSet`.
2117///
2118/// A `Cursor` is like an iterator, except that it can freely seek back-and-forth.
2119///
2120/// Cursors always point to a gap between two elements in the set, and can
2121/// operate on the two immediately adjacent elements.
2122///
2123/// A `Cursor` is created with the [`BTreeSet::lower_bound`] and [`BTreeSet::upper_bound`] methods.
2124#[derive(Clone)]
2125#[unstable(feature = "btree_cursors", issue = "107540")]
2126pub struct Cursor<'a, K: 'a> {
2127    inner: super::map::Cursor<'a, K, SetValZST>,
2128}
2129
2130#[unstable(feature = "btree_cursors", issue = "107540")]
2131impl<K: Debug> Debug for Cursor<'_, K> {
2132    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2133        f.write_str("Cursor")
2134    }
2135}
2136
2137/// A cursor over a `BTreeSet` with editing operations.
2138///
2139/// A `Cursor` is like an iterator, except that it can freely seek back-and-forth, and can
2140/// safely mutate the set during iteration. This is because the lifetime of its yielded
2141/// references is tied to its own lifetime, instead of just the underlying map. This means
2142/// cursors cannot yield multiple elements at once.
2143///
2144/// Cursors always point to a gap between two elements in the set, and can
2145/// operate on the two immediately adjacent elements.
2146///
2147/// A `CursorMut` is created with the [`BTreeSet::lower_bound_mut`] and [`BTreeSet::upper_bound_mut`]
2148/// methods.
2149#[unstable(feature = "btree_cursors", issue = "107540")]
2150pub struct CursorMut<'a, K: 'a, #[unstable(feature = "allocator_api", issue = "32838")] A = Global>
2151{
2152    inner: super::map::CursorMut<'a, K, SetValZST, A>,
2153}
2154
2155#[unstable(feature = "btree_cursors", issue = "107540")]
2156impl<K: Debug, A> Debug for CursorMut<'_, K, A> {
2157    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2158        f.write_str("CursorMut")
2159    }
2160}
2161
2162/// A cursor over a `BTreeSet` with editing operations, and which allows
2163/// mutating elements.
2164///
2165/// A `Cursor` is like an iterator, except that it can freely seek back-and-forth, and can
2166/// safely mutate the set during iteration. This is because the lifetime of its yielded
2167/// references is tied to its own lifetime, instead of just the underlying set. This means
2168/// cursors cannot yield multiple elements at once.
2169///
2170/// Cursors always point to a gap between two elements in the set, and can
2171/// operate on the two immediately adjacent elements.
2172///
2173/// A `CursorMutKey` is created from a [`CursorMut`] with the
2174/// [`CursorMut::with_mutable_key`] method.
2175///
2176/// # Safety
2177///
2178/// Since this cursor allows mutating elements, you must ensure that the
2179/// `BTreeSet` invariants are maintained. Specifically:
2180///
2181/// * The newly inserted element must be unique in the tree.
2182/// * All elements in the tree must remain in sorted order.
2183#[unstable(feature = "btree_cursors", issue = "107540")]
2184pub struct CursorMutKey<
2185    'a,
2186    K: 'a,
2187    #[unstable(feature = "allocator_api", issue = "32838")] A = Global,
2188> {
2189    inner: super::map::CursorMutKey<'a, K, SetValZST, A>,
2190}
2191
2192#[unstable(feature = "btree_cursors", issue = "107540")]
2193impl<K: Debug, A> Debug for CursorMutKey<'_, K, A> {
2194    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2195        f.write_str("CursorMutKey")
2196    }
2197}
2198
2199impl<'a, K> Cursor<'a, K> {
2200    /// Advances the cursor to the next gap, returning the element that it
2201    /// moved over.
2202    ///
2203    /// If the cursor is already at the end of the set then `None` is returned
2204    /// and the cursor is not moved.
2205    #[unstable(feature = "btree_cursors", issue = "107540")]
2206    pub fn next(&mut self) -> Option<&'a K> {
2207        self.inner.next().map(|(k, _)| k)
2208    }
2209
2210    /// Advances the cursor to the previous gap, returning the element that it
2211    /// moved over.
2212    ///
2213    /// If the cursor is already at the start of the set then `None` is returned
2214    /// and the cursor is not moved.
2215    #[unstable(feature = "btree_cursors", issue = "107540")]
2216    pub fn prev(&mut self) -> Option<&'a K> {
2217        self.inner.prev().map(|(k, _)| k)
2218    }
2219
2220    /// Returns a reference to next element without moving the cursor.
2221    ///
2222    /// If the cursor is at the end of the set then `None` is returned
2223    #[unstable(feature = "btree_cursors", issue = "107540")]
2224    pub fn peek_next(&self) -> Option<&'a K> {
2225        self.inner.peek_next().map(|(k, _)| k)
2226    }
2227
2228    /// Returns a reference to the previous element without moving the cursor.
2229    ///
2230    /// If the cursor is at the start of the set then `None` is returned.
2231    #[unstable(feature = "btree_cursors", issue = "107540")]
2232    pub fn peek_prev(&self) -> Option<&'a K> {
2233        self.inner.peek_prev().map(|(k, _)| k)
2234    }
2235}
2236
2237impl<'a, T, A> CursorMut<'a, T, A> {
2238    /// Advances the cursor to the next gap, returning the element that it
2239    /// moved over.
2240    ///
2241    /// If the cursor is already at the end of the set then `None` is returned
2242    /// and the cursor is not moved.
2243    #[unstable(feature = "btree_cursors", issue = "107540")]
2244    pub fn next(&mut self) -> Option<&T> {
2245        self.inner.next().map(|(k, _)| k)
2246    }
2247
2248    /// Advances the cursor to the previous gap, returning the element that it
2249    /// moved over.
2250    ///
2251    /// If the cursor is already at the start of the set then `None` is returned
2252    /// and the cursor is not moved.
2253    #[unstable(feature = "btree_cursors", issue = "107540")]
2254    pub fn prev(&mut self) -> Option<&T> {
2255        self.inner.prev().map(|(k, _)| k)
2256    }
2257
2258    /// Returns a reference to the next element without moving the cursor.
2259    ///
2260    /// If the cursor is at the end of the set then `None` is returned.
2261    #[unstable(feature = "btree_cursors", issue = "107540")]
2262    pub fn peek_next(&mut self) -> Option<&T> {
2263        self.inner.peek_next().map(|(k, _)| k)
2264    }
2265
2266    /// Returns a reference to the previous element without moving the cursor.
2267    ///
2268    /// If the cursor is at the start of the set then `None` is returned.
2269    #[unstable(feature = "btree_cursors", issue = "107540")]
2270    pub fn peek_prev(&mut self) -> Option<&T> {
2271        self.inner.peek_prev().map(|(k, _)| k)
2272    }
2273
2274    /// Returns a read-only cursor pointing to the same location as the
2275    /// `CursorMut`.
2276    ///
2277    /// The lifetime of the returned `Cursor` is bound to that of the
2278    /// `CursorMut`, which means it cannot outlive the `CursorMut` and that the
2279    /// `CursorMut` is frozen for the lifetime of the `Cursor`.
2280    #[unstable(feature = "btree_cursors", issue = "107540")]
2281    pub fn as_cursor(&self) -> Cursor<'_, T> {
2282        Cursor { inner: self.inner.as_cursor() }
2283    }
2284
2285    /// Converts the cursor into a [`CursorMutKey`], which allows mutating
2286    /// elements in the tree.
2287    ///
2288    /// # Safety
2289    ///
2290    /// Since this cursor allows mutating elements, you must ensure that the
2291    /// `BTreeSet` invariants are maintained. Specifically:
2292    ///
2293    /// * The newly inserted element must be unique in the tree.
2294    /// * All elements in the tree must remain in sorted order.
2295    #[unstable(feature = "btree_cursors", issue = "107540")]
2296    pub unsafe fn with_mutable_key(self) -> CursorMutKey<'a, T, A> {
2297        CursorMutKey { inner: unsafe { self.inner.with_mutable_key() } }
2298    }
2299}
2300
2301impl<'a, T, A> CursorMutKey<'a, T, A> {
2302    /// Advances the cursor to the next gap, returning the  element that it
2303    /// moved over.
2304    ///
2305    /// If the cursor is already at the end of the set then `None` is returned
2306    /// and the cursor is not moved.
2307    #[unstable(feature = "btree_cursors", issue = "107540")]
2308    pub fn next(&mut self) -> Option<&mut T> {
2309        self.inner.next().map(|(k, _)| k)
2310    }
2311
2312    /// Advances the cursor to the previous gap, returning the element that it
2313    /// moved over.
2314    ///
2315    /// If the cursor is already at the start of the set then `None` is returned
2316    /// and the cursor is not moved.
2317    #[unstable(feature = "btree_cursors", issue = "107540")]
2318    pub fn prev(&mut self) -> Option<&mut T> {
2319        self.inner.prev().map(|(k, _)| k)
2320    }
2321
2322    /// Returns a reference to the next element without moving the cursor.
2323    ///
2324    /// If the cursor is at the end of the set then `None` is returned
2325    #[unstable(feature = "btree_cursors", issue = "107540")]
2326    pub fn peek_next(&mut self) -> Option<&mut T> {
2327        self.inner.peek_next().map(|(k, _)| k)
2328    }
2329
2330    /// Returns a reference to the previous element without moving the cursor.
2331    ///
2332    /// If the cursor is at the start of the set then `None` is returned.
2333    #[unstable(feature = "btree_cursors", issue = "107540")]
2334    pub fn peek_prev(&mut self) -> Option<&mut T> {
2335        self.inner.peek_prev().map(|(k, _)| k)
2336    }
2337
2338    /// Returns a read-only cursor pointing to the same location as the
2339    /// `CursorMutKey`.
2340    ///
2341    /// The lifetime of the returned `Cursor` is bound to that of the
2342    /// `CursorMutKey`, which means it cannot outlive the `CursorMutKey` and that the
2343    /// `CursorMutKey` is frozen for the lifetime of the `Cursor`.
2344    #[unstable(feature = "btree_cursors", issue = "107540")]
2345    pub fn as_cursor(&self) -> Cursor<'_, T> {
2346        Cursor { inner: self.inner.as_cursor() }
2347    }
2348}
2349
2350impl<'a, T: Ord, A: Allocator + Clone> CursorMut<'a, T, A> {
2351    /// Inserts a new element into the set in the gap that the
2352    /// cursor is currently pointing to.
2353    ///
2354    /// After the insertion the cursor will be pointing at the gap before the
2355    /// newly inserted element.
2356    ///
2357    /// # Safety
2358    ///
2359    /// You must ensure that the `BTreeSet` invariants are maintained.
2360    /// Specifically:
2361    ///
2362    /// * The newly inserted element must be unique in the tree.
2363    /// * All elements in the tree must remain in sorted order.
2364    #[unstable(feature = "btree_cursors", issue = "107540")]
2365    pub unsafe fn insert_after_unchecked(&mut self, value: T) {
2366        unsafe { self.inner.insert_after_unchecked(value, SetValZST) }
2367    }
2368
2369    /// Inserts a new element into the set in the gap that the
2370    /// cursor is currently pointing to.
2371    ///
2372    /// After the insertion the cursor will be pointing at the gap after the
2373    /// newly inserted element.
2374    ///
2375    /// # Safety
2376    ///
2377    /// You must ensure that the `BTreeSet` invariants are maintained.
2378    /// Specifically:
2379    ///
2380    /// * The newly inserted element must be unique in the tree.
2381    /// * All elements in the tree must remain in sorted order.
2382    #[unstable(feature = "btree_cursors", issue = "107540")]
2383    pub unsafe fn insert_before_unchecked(&mut self, value: T) {
2384        unsafe { self.inner.insert_before_unchecked(value, SetValZST) }
2385    }
2386
2387    /// Inserts a new element into the set in the gap that the
2388    /// cursor is currently pointing to.
2389    ///
2390    /// After the insertion the cursor will be pointing at the gap before the
2391    /// newly inserted element.
2392    ///
2393    /// If the inserted element is not greater than the element before the
2394    /// cursor (if any), or if it not less than the element after the cursor (if
2395    /// any), then an [`UnorderedKeyError`] is returned since this would
2396    /// invalidate the [`Ord`] invariant between the elements of the set.
2397    #[unstable(feature = "btree_cursors", issue = "107540")]
2398    pub fn insert_after(&mut self, value: T) -> Result<(), UnorderedKeyError> {
2399        self.inner.insert_after(value, SetValZST)
2400    }
2401
2402    /// Inserts a new element into the set in the gap that the
2403    /// cursor is currently pointing to.
2404    ///
2405    /// After the insertion the cursor will be pointing at the gap after the
2406    /// newly inserted element.
2407    ///
2408    /// If the inserted element is not greater than the element before the
2409    /// cursor (if any), or if it not less than the element after the cursor (if
2410    /// any), then an [`UnorderedKeyError`] is returned since this would
2411    /// invalidate the [`Ord`] invariant between the elements of the set.
2412    #[unstable(feature = "btree_cursors", issue = "107540")]
2413    pub fn insert_before(&mut self, value: T) -> Result<(), UnorderedKeyError> {
2414        self.inner.insert_before(value, SetValZST)
2415    }
2416
2417    /// Removes the next element from the `BTreeSet`.
2418    ///
2419    /// The element that was removed is returned. The cursor position is
2420    /// unchanged (before the removed element).
2421    #[unstable(feature = "btree_cursors", issue = "107540")]
2422    pub fn remove_next(&mut self) -> Option<T> {
2423        self.inner.remove_next().map(|(k, _)| k)
2424    }
2425
2426    /// Removes the preceding element from the `BTreeSet`.
2427    ///
2428    /// The element that was removed is returned. The cursor position is
2429    /// unchanged (after the removed element).
2430    #[unstable(feature = "btree_cursors", issue = "107540")]
2431    pub fn remove_prev(&mut self) -> Option<T> {
2432        self.inner.remove_prev().map(|(k, _)| k)
2433    }
2434}
2435
2436impl<'a, T: Ord, A: Allocator + Clone> CursorMutKey<'a, T, A> {
2437    /// Inserts a new element into the set in the gap that the
2438    /// cursor is currently pointing to.
2439    ///
2440    /// After the insertion the cursor will be pointing at the gap before the
2441    /// newly inserted element.
2442    ///
2443    /// # Safety
2444    ///
2445    /// You must ensure that the `BTreeSet` invariants are maintained.
2446    /// Specifically:
2447    ///
2448    /// * The key of the newly inserted element must be unique in the tree.
2449    /// * All elements in the tree must remain in sorted order.
2450    #[unstable(feature = "btree_cursors", issue = "107540")]
2451    pub unsafe fn insert_after_unchecked(&mut self, value: T) {
2452        unsafe { self.inner.insert_after_unchecked(value, SetValZST) }
2453    }
2454
2455    /// Inserts a new element into the set in the gap that the
2456    /// cursor is currently pointing to.
2457    ///
2458    /// After the insertion the cursor will be pointing at the gap after the
2459    /// newly inserted element.
2460    ///
2461    /// # Safety
2462    ///
2463    /// You must ensure that the `BTreeSet` invariants are maintained.
2464    /// Specifically:
2465    ///
2466    /// * The newly inserted element must be unique in the tree.
2467    /// * All elements in the tree must remain in sorted order.
2468    #[unstable(feature = "btree_cursors", issue = "107540")]
2469    pub unsafe fn insert_before_unchecked(&mut self, value: T) {
2470        unsafe { self.inner.insert_before_unchecked(value, SetValZST) }
2471    }
2472
2473    /// Inserts a new element into the set in the gap that the
2474    /// cursor is currently pointing to.
2475    ///
2476    /// After the insertion the cursor will be pointing at the gap before the
2477    /// newly inserted element.
2478    ///
2479    /// If the inserted element is not greater than the element before the
2480    /// cursor (if any), or if it not less than the element after the cursor (if
2481    /// any), then an [`UnorderedKeyError`] is returned since this would
2482    /// invalidate the [`Ord`] invariant between the elements of the set.
2483    #[unstable(feature = "btree_cursors", issue = "107540")]
2484    pub fn insert_after(&mut self, value: T) -> Result<(), UnorderedKeyError> {
2485        self.inner.insert_after(value, SetValZST)
2486    }
2487
2488    /// Inserts a new element into the set in the gap that the
2489    /// cursor is currently pointing to.
2490    ///
2491    /// After the insertion the cursor will be pointing at the gap after the
2492    /// newly inserted element.
2493    ///
2494    /// If the inserted element is not greater than the element before the
2495    /// cursor (if any), or if it not less than the element after the cursor (if
2496    /// any), then an [`UnorderedKeyError`] is returned since this would
2497    /// invalidate the [`Ord`] invariant between the elements of the set.
2498    #[unstable(feature = "btree_cursors", issue = "107540")]
2499    pub fn insert_before(&mut self, value: T) -> Result<(), UnorderedKeyError> {
2500        self.inner.insert_before(value, SetValZST)
2501    }
2502
2503    /// Removes the next element from the `BTreeSet`.
2504    ///
2505    /// The element that was removed is returned. The cursor position is
2506    /// unchanged (before the removed element).
2507    #[unstable(feature = "btree_cursors", issue = "107540")]
2508    pub fn remove_next(&mut self) -> Option<T> {
2509        self.inner.remove_next().map(|(k, _)| k)
2510    }
2511
2512    /// Removes the preceding element from the `BTreeSet`.
2513    ///
2514    /// The element that was removed is returned. The cursor position is
2515    /// unchanged (after the removed element).
2516    #[unstable(feature = "btree_cursors", issue = "107540")]
2517    pub fn remove_prev(&mut self) -> Option<T> {
2518        self.inner.remove_prev().map(|(k, _)| k)
2519    }
2520}
2521
2522#[unstable(feature = "btree_cursors", issue = "107540")]
2523pub use super::map::UnorderedKeyError;
2524
2525#[cfg(test)]
2526mod tests;