]> git.lizzy.rs Git - rust.git/blob - library/core/src/cmp.rs
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / library / core / src / cmp.rs
1 //! Functionality for ordering and comparison.
2 //!
3 //! This module contains various tools for ordering and comparing values. In
4 //! summary:
5 //!
6 //! * [`Eq`] and [`PartialEq`] are traits that allow you to define total and
7 //!   partial equality between values, respectively. Implementing them overloads
8 //!   the `==` and `!=` operators.
9 //! * [`Ord`] and [`PartialOrd`] are traits that allow you to define total and
10 //!   partial orderings between values, respectively. Implementing them overloads
11 //!   the `<`, `<=`, `>`, and `>=` operators.
12 //! * [`Ordering`] is an enum returned by the main functions of [`Ord`] and
13 //!   [`PartialOrd`], and describes an ordering.
14 //! * [`Reverse`] is a struct that allows you to easily reverse an ordering.
15 //! * [`max`] and [`min`] are functions that build off of [`Ord`] and allow you
16 //!   to find the maximum or minimum of two values.
17 //!
18 //! For more details, see the respective documentation of each item in the list.
19 //!
20 //! [`max`]: Ord::max
21 //! [`min`]: Ord::min
22
23 #![stable(feature = "rust1", since = "1.0.0")]
24
25 use self::Ordering::*;
26
27 /// Trait for equality comparisons which are [partial equivalence
28 /// relations](https://en.wikipedia.org/wiki/Partial_equivalence_relation).
29 ///
30 /// `x.eq(y)` can also be written `x == y`, and `x.ne(y)` can be written `x != y`.
31 /// We use the easier-to-read infix notation in the remainder of this documentation.
32 ///
33 /// This trait allows for partial equality, for types that do not have a full
34 /// equivalence relation. For example, in floating point numbers `NaN != NaN`,
35 /// so floating point types implement `PartialEq` but not [`trait@Eq`].
36 ///
37 /// Implementations must ensure that `eq` and `ne` are consistent with each other:
38 ///
39 /// - `a != b` if and only if `!(a == b)`
40 ///   (ensured by the default implementation).
41 ///
42 /// If [`PartialOrd`] or [`Ord`] are also implemented for `Self` and `Rhs`, their methods must also
43 /// be consistent with `PartialEq` (see the documentation of those traits for the exact
44 /// requirements). It's easy to accidentally make them disagree by deriving some of the traits and
45 /// manually implementing others.
46 ///
47 /// The equality relation `==` must satisfy the following conditions
48 /// (for all `a`, `b`, `c` of type `A`, `B`, `C`):
49 ///
50 /// - **Symmetric**: if `A: PartialEq<B>` and `B: PartialEq<A>`, then **`a == b`
51 ///   implies `b == a`**; and
52 ///
53 /// - **Transitive**: if `A: PartialEq<B>` and `B: PartialEq<C>` and `A:
54 ///   PartialEq<C>`, then **`a == b` and `b == c` implies `a == c`**.
55 ///
56 /// Note that the `B: PartialEq<A>` (symmetric) and `A: PartialEq<C>`
57 /// (transitive) impls are not forced to exist, but these requirements apply
58 /// whenever they do exist.
59 ///
60 /// ## Derivable
61 ///
62 /// This trait can be used with `#[derive]`. When `derive`d on structs, two
63 /// instances are equal if all fields are equal, and not equal if any fields
64 /// are not equal. When `derive`d on enums, each variant is equal to itself
65 /// and not equal to the other variants.
66 ///
67 /// ## How can I implement `PartialEq`?
68 ///
69 /// An example implementation for a domain in which two books are considered
70 /// the same book if their ISBN matches, even if the formats differ:
71 ///
72 /// ```
73 /// enum BookFormat {
74 ///     Paperback,
75 ///     Hardback,
76 ///     Ebook,
77 /// }
78 ///
79 /// struct Book {
80 ///     isbn: i32,
81 ///     format: BookFormat,
82 /// }
83 ///
84 /// impl PartialEq for Book {
85 ///     fn eq(&self, other: &Self) -> bool {
86 ///         self.isbn == other.isbn
87 ///     }
88 /// }
89 ///
90 /// let b1 = Book { isbn: 3, format: BookFormat::Paperback };
91 /// let b2 = Book { isbn: 3, format: BookFormat::Ebook };
92 /// let b3 = Book { isbn: 10, format: BookFormat::Paperback };
93 ///
94 /// assert!(b1 == b2);
95 /// assert!(b1 != b3);
96 /// ```
97 ///
98 /// ## How can I compare two different types?
99 ///
100 /// The type you can compare with is controlled by `PartialEq`'s type parameter.
101 /// For example, let's tweak our previous code a bit:
102 ///
103 /// ```
104 /// // The derive implements <BookFormat> == <BookFormat> comparisons
105 /// #[derive(PartialEq)]
106 /// enum BookFormat {
107 ///     Paperback,
108 ///     Hardback,
109 ///     Ebook,
110 /// }
111 ///
112 /// struct Book {
113 ///     isbn: i32,
114 ///     format: BookFormat,
115 /// }
116 ///
117 /// // Implement <Book> == <BookFormat> comparisons
118 /// impl PartialEq<BookFormat> for Book {
119 ///     fn eq(&self, other: &BookFormat) -> bool {
120 ///         self.format == *other
121 ///     }
122 /// }
123 ///
124 /// // Implement <BookFormat> == <Book> comparisons
125 /// impl PartialEq<Book> for BookFormat {
126 ///     fn eq(&self, other: &Book) -> bool {
127 ///         *self == other.format
128 ///     }
129 /// }
130 ///
131 /// let b1 = Book { isbn: 3, format: BookFormat::Paperback };
132 ///
133 /// assert!(b1 == BookFormat::Paperback);
134 /// assert!(BookFormat::Ebook != b1);
135 /// ```
136 ///
137 /// By changing `impl PartialEq for Book` to `impl PartialEq<BookFormat> for Book`,
138 /// we allow `BookFormat`s to be compared with `Book`s.
139 ///
140 /// A comparison like the one above, which ignores some fields of the struct,
141 /// can be dangerous. It can easily lead to an unintended violation of the
142 /// requirements for a partial equivalence relation. For example, if we kept
143 /// the above implementation of `PartialEq<Book>` for `BookFormat` and added an
144 /// implementation of `PartialEq<Book>` for `Book` (either via a `#[derive]` or
145 /// via the manual implementation from the first example) then the result would
146 /// violate transitivity:
147 ///
148 /// ```should_panic
149 /// #[derive(PartialEq)]
150 /// enum BookFormat {
151 ///     Paperback,
152 ///     Hardback,
153 ///     Ebook,
154 /// }
155 ///
156 /// #[derive(PartialEq)]
157 /// struct Book {
158 ///     isbn: i32,
159 ///     format: BookFormat,
160 /// }
161 ///
162 /// impl PartialEq<BookFormat> for Book {
163 ///     fn eq(&self, other: &BookFormat) -> bool {
164 ///         self.format == *other
165 ///     }
166 /// }
167 ///
168 /// impl PartialEq<Book> for BookFormat {
169 ///     fn eq(&self, other: &Book) -> bool {
170 ///         *self == other.format
171 ///     }
172 /// }
173 ///
174 /// fn main() {
175 ///     let b1 = Book { isbn: 1, format: BookFormat::Paperback };
176 ///     let b2 = Book { isbn: 2, format: BookFormat::Paperback };
177 ///
178 ///     assert!(b1 == BookFormat::Paperback);
179 ///     assert!(BookFormat::Paperback == b2);
180 ///
181 ///     // The following should hold by transitivity but doesn't.
182 ///     assert!(b1 == b2); // <-- PANICS
183 /// }
184 /// ```
185 ///
186 /// # Examples
187 ///
188 /// ```
189 /// let x: u32 = 0;
190 /// let y: u32 = 1;
191 ///
192 /// assert_eq!(x == y, false);
193 /// assert_eq!(x.eq(&y), false);
194 /// ```
195 ///
196 /// [`eq`]: PartialEq::eq
197 /// [`ne`]: PartialEq::ne
198 #[lang = "eq"]
199 #[stable(feature = "rust1", since = "1.0.0")]
200 #[doc(alias = "==")]
201 #[doc(alias = "!=")]
202 #[cfg_attr(
203     bootstrap,
204     rustc_on_unimplemented(
205         message = "can't compare `{Self}` with `{Rhs}`",
206         label = "no implementation for `{Self} == {Rhs}`"
207     )
208 )]
209 #[cfg_attr(
210     not(bootstrap),
211     rustc_on_unimplemented(
212         message = "can't compare `{Self}` with `{Rhs}`",
213         label = "no implementation for `{Self} == {Rhs}`",
214         append_const_msg,
215     )
216 )]
217 #[rustc_diagnostic_item = "PartialEq"]
218 pub trait PartialEq<Rhs: ?Sized = Self> {
219     /// This method tests for `self` and `other` values to be equal, and is used
220     /// by `==`.
221     #[must_use]
222     #[stable(feature = "rust1", since = "1.0.0")]
223     fn eq(&self, other: &Rhs) -> bool;
224
225     /// This method tests for `!=`.
226     #[inline]
227     #[must_use]
228     #[stable(feature = "rust1", since = "1.0.0")]
229     #[default_method_body_is_const]
230     fn ne(&self, other: &Rhs) -> bool {
231         !self.eq(other)
232     }
233 }
234
235 /// Derive macro generating an impl of the trait `PartialEq`.
236 #[rustc_builtin_macro]
237 #[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
238 #[allow_internal_unstable(core_intrinsics, structural_match)]
239 pub macro PartialEq($item:item) {
240     /* compiler built-in */
241 }
242
243 /// Trait for equality comparisons which are [equivalence relations](
244 /// https://en.wikipedia.org/wiki/Equivalence_relation).
245 ///
246 /// This means, that in addition to `a == b` and `a != b` being strict inverses, the equality must
247 /// be (for all `a`, `b` and `c`):
248 ///
249 /// - reflexive: `a == a`;
250 /// - symmetric: `a == b` implies `b == a`; and
251 /// - transitive: `a == b` and `b == c` implies `a == c`.
252 ///
253 /// This property cannot be checked by the compiler, and therefore `Eq` implies
254 /// [`PartialEq`], and has no extra methods.
255 ///
256 /// ## Derivable
257 ///
258 /// This trait can be used with `#[derive]`. When `derive`d, because `Eq` has
259 /// no extra methods, it is only informing the compiler that this is an
260 /// equivalence relation rather than a partial equivalence relation. Note that
261 /// the `derive` strategy requires all fields are `Eq`, which isn't
262 /// always desired.
263 ///
264 /// ## How can I implement `Eq`?
265 ///
266 /// If you cannot use the `derive` strategy, specify that your type implements
267 /// `Eq`, which has no methods:
268 ///
269 /// ```
270 /// enum BookFormat { Paperback, Hardback, Ebook }
271 /// struct Book {
272 ///     isbn: i32,
273 ///     format: BookFormat,
274 /// }
275 /// impl PartialEq for Book {
276 ///     fn eq(&self, other: &Self) -> bool {
277 ///         self.isbn == other.isbn
278 ///     }
279 /// }
280 /// impl Eq for Book {}
281 /// ```
282 #[doc(alias = "==")]
283 #[doc(alias = "!=")]
284 #[stable(feature = "rust1", since = "1.0.0")]
285 #[rustc_diagnostic_item = "Eq"]
286 pub trait Eq: PartialEq<Self> {
287     // this method is used solely by #[deriving] to assert
288     // that every component of a type implements #[deriving]
289     // itself, the current deriving infrastructure means doing this
290     // assertion without using a method on this trait is nearly
291     // impossible.
292     //
293     // This should never be implemented by hand.
294     #[doc(hidden)]
295     #[no_coverage] // rust-lang/rust#84605
296     #[inline]
297     #[stable(feature = "rust1", since = "1.0.0")]
298     fn assert_receiver_is_total_eq(&self) {}
299 }
300
301 /// Derive macro generating an impl of the trait `Eq`.
302 #[rustc_builtin_macro]
303 #[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
304 #[allow_internal_unstable(core_intrinsics, derive_eq, structural_match, no_coverage)]
305 pub macro Eq($item:item) {
306     /* compiler built-in */
307 }
308
309 // FIXME: this struct is used solely by #[derive] to
310 // assert that every component of a type implements Eq.
311 //
312 // This struct should never appear in user code.
313 #[doc(hidden)]
314 #[allow(missing_debug_implementations)]
315 #[unstable(feature = "derive_eq", reason = "deriving hack, should not be public", issue = "none")]
316 pub struct AssertParamIsEq<T: Eq + ?Sized> {
317     _field: crate::marker::PhantomData<T>,
318 }
319
320 /// An `Ordering` is the result of a comparison between two values.
321 ///
322 /// # Examples
323 ///
324 /// ```
325 /// use std::cmp::Ordering;
326 ///
327 /// let result = 1.cmp(&2);
328 /// assert_eq!(Ordering::Less, result);
329 ///
330 /// let result = 1.cmp(&1);
331 /// assert_eq!(Ordering::Equal, result);
332 ///
333 /// let result = 2.cmp(&1);
334 /// assert_eq!(Ordering::Greater, result);
335 /// ```
336 #[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
337 #[stable(feature = "rust1", since = "1.0.0")]
338 #[repr(i8)]
339 pub enum Ordering {
340     /// An ordering where a compared value is less than another.
341     #[stable(feature = "rust1", since = "1.0.0")]
342     Less = -1,
343     /// An ordering where a compared value is equal to another.
344     #[stable(feature = "rust1", since = "1.0.0")]
345     Equal = 0,
346     /// An ordering where a compared value is greater than another.
347     #[stable(feature = "rust1", since = "1.0.0")]
348     Greater = 1,
349 }
350
351 impl Ordering {
352     /// Returns `true` if the ordering is the `Equal` variant.
353     ///
354     /// # Examples
355     ///
356     /// ```
357     /// use std::cmp::Ordering;
358     ///
359     /// assert_eq!(Ordering::Less.is_eq(), false);
360     /// assert_eq!(Ordering::Equal.is_eq(), true);
361     /// assert_eq!(Ordering::Greater.is_eq(), false);
362     /// ```
363     #[inline]
364     #[must_use]
365     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
366     #[stable(feature = "ordering_helpers", since = "1.53.0")]
367     pub const fn is_eq(self) -> bool {
368         matches!(self, Equal)
369     }
370
371     /// Returns `true` if the ordering is not the `Equal` variant.
372     ///
373     /// # Examples
374     ///
375     /// ```
376     /// use std::cmp::Ordering;
377     ///
378     /// assert_eq!(Ordering::Less.is_ne(), true);
379     /// assert_eq!(Ordering::Equal.is_ne(), false);
380     /// assert_eq!(Ordering::Greater.is_ne(), true);
381     /// ```
382     #[inline]
383     #[must_use]
384     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
385     #[stable(feature = "ordering_helpers", since = "1.53.0")]
386     pub const fn is_ne(self) -> bool {
387         !matches!(self, Equal)
388     }
389
390     /// Returns `true` if the ordering is the `Less` variant.
391     ///
392     /// # Examples
393     ///
394     /// ```
395     /// use std::cmp::Ordering;
396     ///
397     /// assert_eq!(Ordering::Less.is_lt(), true);
398     /// assert_eq!(Ordering::Equal.is_lt(), false);
399     /// assert_eq!(Ordering::Greater.is_lt(), false);
400     /// ```
401     #[inline]
402     #[must_use]
403     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
404     #[stable(feature = "ordering_helpers", since = "1.53.0")]
405     pub const fn is_lt(self) -> bool {
406         matches!(self, Less)
407     }
408
409     /// Returns `true` if the ordering is the `Greater` variant.
410     ///
411     /// # Examples
412     ///
413     /// ```
414     /// use std::cmp::Ordering;
415     ///
416     /// assert_eq!(Ordering::Less.is_gt(), false);
417     /// assert_eq!(Ordering::Equal.is_gt(), false);
418     /// assert_eq!(Ordering::Greater.is_gt(), true);
419     /// ```
420     #[inline]
421     #[must_use]
422     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
423     #[stable(feature = "ordering_helpers", since = "1.53.0")]
424     pub const fn is_gt(self) -> bool {
425         matches!(self, Greater)
426     }
427
428     /// Returns `true` if the ordering is either the `Less` or `Equal` variant.
429     ///
430     /// # Examples
431     ///
432     /// ```
433     /// use std::cmp::Ordering;
434     ///
435     /// assert_eq!(Ordering::Less.is_le(), true);
436     /// assert_eq!(Ordering::Equal.is_le(), true);
437     /// assert_eq!(Ordering::Greater.is_le(), false);
438     /// ```
439     #[inline]
440     #[must_use]
441     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
442     #[stable(feature = "ordering_helpers", since = "1.53.0")]
443     pub const fn is_le(self) -> bool {
444         !matches!(self, Greater)
445     }
446
447     /// Returns `true` if the ordering is either the `Greater` or `Equal` variant.
448     ///
449     /// # Examples
450     ///
451     /// ```
452     /// use std::cmp::Ordering;
453     ///
454     /// assert_eq!(Ordering::Less.is_ge(), false);
455     /// assert_eq!(Ordering::Equal.is_ge(), true);
456     /// assert_eq!(Ordering::Greater.is_ge(), true);
457     /// ```
458     #[inline]
459     #[must_use]
460     #[rustc_const_stable(feature = "ordering_helpers", since = "1.53.0")]
461     #[stable(feature = "ordering_helpers", since = "1.53.0")]
462     pub const fn is_ge(self) -> bool {
463         !matches!(self, Less)
464     }
465
466     /// Reverses the `Ordering`.
467     ///
468     /// * `Less` becomes `Greater`.
469     /// * `Greater` becomes `Less`.
470     /// * `Equal` becomes `Equal`.
471     ///
472     /// # Examples
473     ///
474     /// Basic behavior:
475     ///
476     /// ```
477     /// use std::cmp::Ordering;
478     ///
479     /// assert_eq!(Ordering::Less.reverse(), Ordering::Greater);
480     /// assert_eq!(Ordering::Equal.reverse(), Ordering::Equal);
481     /// assert_eq!(Ordering::Greater.reverse(), Ordering::Less);
482     /// ```
483     ///
484     /// This method can be used to reverse a comparison:
485     ///
486     /// ```
487     /// let data: &mut [_] = &mut [2, 10, 5, 8];
488     ///
489     /// // sort the array from largest to smallest.
490     /// data.sort_by(|a, b| a.cmp(b).reverse());
491     ///
492     /// let b: &mut [_] = &mut [10, 8, 5, 2];
493     /// assert!(data == b);
494     /// ```
495     #[inline]
496     #[must_use]
497     #[rustc_const_stable(feature = "const_ordering", since = "1.48.0")]
498     #[stable(feature = "rust1", since = "1.0.0")]
499     pub const fn reverse(self) -> Ordering {
500         match self {
501             Less => Greater,
502             Equal => Equal,
503             Greater => Less,
504         }
505     }
506
507     /// Chains two orderings.
508     ///
509     /// Returns `self` when it's not `Equal`. Otherwise returns `other`.
510     ///
511     /// # Examples
512     ///
513     /// ```
514     /// use std::cmp::Ordering;
515     ///
516     /// let result = Ordering::Equal.then(Ordering::Less);
517     /// assert_eq!(result, Ordering::Less);
518     ///
519     /// let result = Ordering::Less.then(Ordering::Equal);
520     /// assert_eq!(result, Ordering::Less);
521     ///
522     /// let result = Ordering::Less.then(Ordering::Greater);
523     /// assert_eq!(result, Ordering::Less);
524     ///
525     /// let result = Ordering::Equal.then(Ordering::Equal);
526     /// assert_eq!(result, Ordering::Equal);
527     ///
528     /// let x: (i64, i64, i64) = (1, 2, 7);
529     /// let y: (i64, i64, i64) = (1, 5, 3);
530     /// let result = x.0.cmp(&y.0).then(x.1.cmp(&y.1)).then(x.2.cmp(&y.2));
531     ///
532     /// assert_eq!(result, Ordering::Less);
533     /// ```
534     #[inline]
535     #[must_use]
536     #[rustc_const_stable(feature = "const_ordering", since = "1.48.0")]
537     #[stable(feature = "ordering_chaining", since = "1.17.0")]
538     pub const fn then(self, other: Ordering) -> Ordering {
539         match self {
540             Equal => other,
541             _ => self,
542         }
543     }
544
545     /// Chains the ordering with the given function.
546     ///
547     /// Returns `self` when it's not `Equal`. Otherwise calls `f` and returns
548     /// the result.
549     ///
550     /// # Examples
551     ///
552     /// ```
553     /// use std::cmp::Ordering;
554     ///
555     /// let result = Ordering::Equal.then_with(|| Ordering::Less);
556     /// assert_eq!(result, Ordering::Less);
557     ///
558     /// let result = Ordering::Less.then_with(|| Ordering::Equal);
559     /// assert_eq!(result, Ordering::Less);
560     ///
561     /// let result = Ordering::Less.then_with(|| Ordering::Greater);
562     /// assert_eq!(result, Ordering::Less);
563     ///
564     /// let result = Ordering::Equal.then_with(|| Ordering::Equal);
565     /// assert_eq!(result, Ordering::Equal);
566     ///
567     /// let x: (i64, i64, i64) = (1, 2, 7);
568     /// let y: (i64, i64, i64) = (1, 5, 3);
569     /// let result = x.0.cmp(&y.0).then_with(|| x.1.cmp(&y.1)).then_with(|| x.2.cmp(&y.2));
570     ///
571     /// assert_eq!(result, Ordering::Less);
572     /// ```
573     #[inline]
574     #[must_use]
575     #[stable(feature = "ordering_chaining", since = "1.17.0")]
576     pub fn then_with<F: FnOnce() -> Ordering>(self, f: F) -> Ordering {
577         match self {
578             Equal => f(),
579             _ => self,
580         }
581     }
582 }
583
584 /// A helper struct for reverse ordering.
585 ///
586 /// This struct is a helper to be used with functions like [`Vec::sort_by_key`] and
587 /// can be used to reverse order a part of a key.
588 ///
589 /// [`Vec::sort_by_key`]: ../../std/vec/struct.Vec.html#method.sort_by_key
590 ///
591 /// # Examples
592 ///
593 /// ```
594 /// use std::cmp::Reverse;
595 ///
596 /// let mut v = vec![1, 2, 3, 4, 5, 6];
597 /// v.sort_by_key(|&num| (num > 3, Reverse(num)));
598 /// assert_eq!(v, vec![3, 2, 1, 6, 5, 4]);
599 /// ```
600 #[derive(PartialEq, Eq, Debug, Copy, Default, Hash)]
601 #[stable(feature = "reverse_cmp_key", since = "1.19.0")]
602 #[repr(transparent)]
603 pub struct Reverse<T>(#[stable(feature = "reverse_cmp_key", since = "1.19.0")] pub T);
604
605 #[stable(feature = "reverse_cmp_key", since = "1.19.0")]
606 impl<T: PartialOrd> PartialOrd for Reverse<T> {
607     #[inline]
608     fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering> {
609         other.0.partial_cmp(&self.0)
610     }
611
612     #[inline]
613     fn lt(&self, other: &Self) -> bool {
614         other.0 < self.0
615     }
616     #[inline]
617     fn le(&self, other: &Self) -> bool {
618         other.0 <= self.0
619     }
620     #[inline]
621     fn gt(&self, other: &Self) -> bool {
622         other.0 > self.0
623     }
624     #[inline]
625     fn ge(&self, other: &Self) -> bool {
626         other.0 >= self.0
627     }
628 }
629
630 #[stable(feature = "reverse_cmp_key", since = "1.19.0")]
631 impl<T: Ord> Ord for Reverse<T> {
632     #[inline]
633     fn cmp(&self, other: &Reverse<T>) -> Ordering {
634         other.0.cmp(&self.0)
635     }
636 }
637
638 #[stable(feature = "reverse_cmp_key", since = "1.19.0")]
639 impl<T: Clone> Clone for Reverse<T> {
640     #[inline]
641     fn clone(&self) -> Reverse<T> {
642         Reverse(self.0.clone())
643     }
644
645     #[inline]
646     fn clone_from(&mut self, other: &Self) {
647         self.0.clone_from(&other.0)
648     }
649 }
650
651 /// Trait for types that form a [total order](https://en.wikipedia.org/wiki/Total_order).
652 ///
653 /// Implementations must be consistent with the [`PartialOrd`] implementation, and ensure
654 /// `max`, `min`, and `clamp` are consistent with `cmp`:
655 ///
656 /// - `partial_cmp(a, b) == Some(cmp(a, b))`.
657 /// - `max(a, b) == max_by(a, b, cmp)` (ensured by the default implementation).
658 /// - `min(a, b) == min_by(a, b, cmp)` (ensured by the default implementation).
659 /// - For `a.clamp(min, max)`, see the [method docs](#method.clamp)
660 ///   (ensured by the default implementation).
661 ///
662 /// It's easy to accidentally make `cmp` and `partial_cmp` disagree by
663 /// deriving some of the traits and manually implementing others.
664 ///
665 /// ## Corollaries
666 ///
667 /// From the above and the requirements of `PartialOrd`, it follows that `<` defines a strict total order.
668 /// This means that for all `a`, `b` and `c`:
669 ///
670 /// - exactly one of `a < b`, `a == b` or `a > b` is true; and
671 /// - `<` is transitive: `a < b` and `b < c` implies `a < c`. The same must hold for both `==` and `>`.
672 ///
673 /// ## Derivable
674 ///
675 /// This trait can be used with `#[derive]`.
676 ///
677 /// When `derive`d on structs, it will produce a
678 /// [lexicographic](https://en.wikipedia.org/wiki/Lexicographic_order) ordering
679 /// based on the top-to-bottom declaration order of the struct's members.
680 ///
681 /// When `derive`d on enums, variants are ordered by their discriminants.
682 /// By default, the discriminant is smallest for variants at the top, and
683 /// largest for variants at the bottom. Here's an example:
684 ///
685 /// ```
686 /// #[derive(PartialEq, Eq, PartialOrd, Ord)]
687 /// enum E {
688 ///     Top,
689 ///     Bottom,
690 /// }
691 ///
692 /// assert!(E::Top < E::Bottom);
693 /// ```
694 ///
695 /// However, manually setting the discriminants can override this default
696 /// behavior:
697 ///
698 /// ```
699 /// #[derive(PartialEq, Eq, PartialOrd, Ord)]
700 /// enum E {
701 ///     Top = 2,
702 ///     Bottom = 1,
703 /// }
704 ///
705 /// assert!(E::Bottom < E::Top);
706 /// ```
707 ///
708 /// ## Lexicographical comparison
709 ///
710 /// Lexicographical comparison is an operation with the following properties:
711 ///  - Two sequences are compared element by element.
712 ///  - The first mismatching element defines which sequence is lexicographically less or greater than the other.
713 ///  - If one sequence is a prefix of another, the shorter sequence is lexicographically less than the other.
714 ///  - If two sequence have equivalent elements and are of the same length, then the sequences are lexicographically equal.
715 ///  - An empty sequence is lexicographically less than any non-empty sequence.
716 ///  - Two empty sequences are lexicographically equal.
717 ///
718 /// ## How can I implement `Ord`?
719 ///
720 /// `Ord` requires that the type also be [`PartialOrd`] and [`Eq`] (which requires [`PartialEq`]).
721 ///
722 /// Then you must define an implementation for [`cmp`]. You may find it useful to use
723 /// [`cmp`] on your type's fields.
724 ///
725 /// Here's an example where you want to sort people by height only, disregarding `id`
726 /// and `name`:
727 ///
728 /// ```
729 /// use std::cmp::Ordering;
730 ///
731 /// #[derive(Eq)]
732 /// struct Person {
733 ///     id: u32,
734 ///     name: String,
735 ///     height: u32,
736 /// }
737 ///
738 /// impl Ord for Person {
739 ///     fn cmp(&self, other: &Self) -> Ordering {
740 ///         self.height.cmp(&other.height)
741 ///     }
742 /// }
743 ///
744 /// impl PartialOrd for Person {
745 ///     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
746 ///         Some(self.cmp(other))
747 ///     }
748 /// }
749 ///
750 /// impl PartialEq for Person {
751 ///     fn eq(&self, other: &Self) -> bool {
752 ///         self.height == other.height
753 ///     }
754 /// }
755 /// ```
756 ///
757 /// [`cmp`]: Ord::cmp
758 #[doc(alias = "<")]
759 #[doc(alias = ">")]
760 #[doc(alias = "<=")]
761 #[doc(alias = ">=")]
762 #[stable(feature = "rust1", since = "1.0.0")]
763 #[rustc_diagnostic_item = "Ord"]
764 pub trait Ord: Eq + PartialOrd<Self> {
765     /// This method returns an [`Ordering`] between `self` and `other`.
766     ///
767     /// By convention, `self.cmp(&other)` returns the ordering matching the expression
768     /// `self <operator> other` if true.
769     ///
770     /// # Examples
771     ///
772     /// ```
773     /// use std::cmp::Ordering;
774     ///
775     /// assert_eq!(5.cmp(&10), Ordering::Less);
776     /// assert_eq!(10.cmp(&5), Ordering::Greater);
777     /// assert_eq!(5.cmp(&5), Ordering::Equal);
778     /// ```
779     #[must_use]
780     #[stable(feature = "rust1", since = "1.0.0")]
781     fn cmp(&self, other: &Self) -> Ordering;
782
783     /// Compares and returns the maximum of two values.
784     ///
785     /// Returns the second argument if the comparison determines them to be equal.
786     ///
787     /// # Examples
788     ///
789     /// ```
790     /// assert_eq!(2, 1.max(2));
791     /// assert_eq!(2, 2.max(2));
792     /// ```
793     #[stable(feature = "ord_max_min", since = "1.21.0")]
794     #[inline]
795     #[must_use]
796     fn max(self, other: Self) -> Self
797     where
798         Self: Sized,
799     {
800         max_by(self, other, Ord::cmp)
801     }
802
803     /// Compares and returns the minimum of two values.
804     ///
805     /// Returns the first argument if the comparison determines them to be equal.
806     ///
807     /// # Examples
808     ///
809     /// ```
810     /// assert_eq!(1, 1.min(2));
811     /// assert_eq!(2, 2.min(2));
812     /// ```
813     #[stable(feature = "ord_max_min", since = "1.21.0")]
814     #[inline]
815     #[must_use]
816     fn min(self, other: Self) -> Self
817     where
818         Self: Sized,
819     {
820         min_by(self, other, Ord::cmp)
821     }
822
823     /// Restrict a value to a certain interval.
824     ///
825     /// Returns `max` if `self` is greater than `max`, and `min` if `self` is
826     /// less than `min`. Otherwise this returns `self`.
827     ///
828     /// # Panics
829     ///
830     /// Panics if `min > max`.
831     ///
832     /// # Examples
833     ///
834     /// ```
835     /// assert!((-3).clamp(-2, 1) == -2);
836     /// assert!(0.clamp(-2, 1) == 0);
837     /// assert!(2.clamp(-2, 1) == 1);
838     /// ```
839     #[must_use]
840     #[stable(feature = "clamp", since = "1.50.0")]
841     fn clamp(self, min: Self, max: Self) -> Self
842     where
843         Self: Sized,
844     {
845         assert!(min <= max);
846         if self < min {
847             min
848         } else if self > max {
849             max
850         } else {
851             self
852         }
853     }
854 }
855
856 /// Derive macro generating an impl of the trait `Ord`.
857 #[rustc_builtin_macro]
858 #[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
859 #[allow_internal_unstable(core_intrinsics)]
860 pub macro Ord($item:item) {
861     /* compiler built-in */
862 }
863
864 #[stable(feature = "rust1", since = "1.0.0")]
865 impl Ord for Ordering {
866     #[inline]
867     fn cmp(&self, other: &Ordering) -> Ordering {
868         (*self as i32).cmp(&(*other as i32))
869     }
870 }
871
872 #[stable(feature = "rust1", since = "1.0.0")]
873 impl PartialOrd for Ordering {
874     #[inline]
875     fn partial_cmp(&self, other: &Ordering) -> Option<Ordering> {
876         (*self as i32).partial_cmp(&(*other as i32))
877     }
878 }
879
880 /// Trait for types that form a [partial order](https://en.wikipedia.org/wiki/Partial_order).
881 ///
882 /// The `lt`, `le`, `gt`, and `ge` methods of this trait can be called using
883 /// the `<`, `<=`, `>`, and `>=` operators, respectively.
884 ///
885 /// The methods of this trait must be consistent with each other and with those of [`PartialEq`].
886 /// The following conditions must hold:
887 ///
888 /// 1. `a == b` if and only if `partial_cmp(a, b) == Some(Equal)`.
889 /// 2. `a < b` if and only if `partial_cmp(a, b) == Some(Less)`
890 /// 3. `a > b` if and only if `partial_cmp(a, b) == Some(Greater)`
891 /// 4. `a <= b` if and only if `a < b || a == b`
892 /// 5. `a >= b` if and only if `a > b || a == b`
893 /// 6. `a != b` if and only if `!(a == b)`.
894 ///
895 /// Conditions 2–5 above are ensured by the default implementation.
896 /// Condition 6 is already ensured by [`PartialEq`].
897 ///
898 /// If [`Ord`] is also implemented for `Self` and `Rhs`, it must also be consistent with
899 /// `partial_cmp` (see the documentation of that trait for the exact requirements). It's
900 /// easy to accidentally make them disagree by deriving some of the traits and manually
901 /// implementing others.
902 ///
903 /// The comparison must satisfy, for all `a`, `b` and `c`:
904 ///
905 /// - transitivity: `a < b` and `b < c` implies `a < c`. The same must hold for both `==` and `>`.
906 /// - duality: `a < b` if and only if `b > a`.
907 ///
908 /// Note that these requirements mean that the trait itself must be implemented symmetrically and
909 /// transitively: if `T: PartialOrd<U>` and `U: PartialOrd<V>` then `U: PartialOrd<T>` and `T:
910 /// PartialOrd<V>`.
911 ///
912 /// ## Corollaries
913 ///
914 /// The following corollaries follow from the above requirements:
915 ///
916 /// - irreflexivity of `<` and `>`: `!(a < a)`, `!(a > a)`
917 /// - transitivity of `>`: if `a > b` and `b > c` then `a > c`
918 /// - duality of `partial_cmp`: `partial_cmp(a, b) == partial_cmp(b, a).map(Ordering::reverse)`
919 ///
920 /// ## Derivable
921 ///
922 /// This trait can be used with `#[derive]`.
923 ///
924 /// When `derive`d on structs, it will produce a
925 /// [lexicographic](https://en.wikipedia.org/wiki/Lexicographic_order) ordering
926 /// based on the top-to-bottom declaration order of the struct's members.
927 ///
928 /// When `derive`d on enums, variants are ordered by their discriminants.
929 /// By default, the discriminant is smallest for variants at the top, and
930 /// largest for variants at the bottom. Here's an example:
931 ///
932 /// ```
933 /// #[derive(PartialEq, PartialOrd)]
934 /// enum E {
935 ///     Top,
936 ///     Bottom,
937 /// }
938 ///
939 /// assert!(E::Top < E::Bottom);
940 /// ```
941 ///
942 /// However, manually setting the discriminants can override this default
943 /// behavior:
944 ///
945 /// ```
946 /// #[derive(PartialEq, PartialOrd)]
947 /// enum E {
948 ///     Top = 2,
949 ///     Bottom = 1,
950 /// }
951 ///
952 /// assert!(E::Bottom < E::Top);
953 /// ```
954 ///
955 /// ## How can I implement `PartialOrd`?
956 ///
957 /// `PartialOrd` only requires implementation of the [`partial_cmp`] method, with the others
958 /// generated from default implementations.
959 ///
960 /// However it remains possible to implement the others separately for types which do not have a
961 /// total order. For example, for floating point numbers, `NaN < 0 == false` and `NaN >= 0 ==
962 /// false` (cf. IEEE 754-2008 section 5.11).
963 ///
964 /// `PartialOrd` requires your type to be [`PartialEq`].
965 ///
966 /// If your type is [`Ord`], you can implement [`partial_cmp`] by using [`cmp`]:
967 ///
968 /// ```
969 /// use std::cmp::Ordering;
970 ///
971 /// #[derive(Eq)]
972 /// struct Person {
973 ///     id: u32,
974 ///     name: String,
975 ///     height: u32,
976 /// }
977 ///
978 /// impl PartialOrd for Person {
979 ///     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
980 ///         Some(self.cmp(other))
981 ///     }
982 /// }
983 ///
984 /// impl Ord for Person {
985 ///     fn cmp(&self, other: &Self) -> Ordering {
986 ///         self.height.cmp(&other.height)
987 ///     }
988 /// }
989 ///
990 /// impl PartialEq for Person {
991 ///     fn eq(&self, other: &Self) -> bool {
992 ///         self.height == other.height
993 ///     }
994 /// }
995 /// ```
996 ///
997 /// You may also find it useful to use [`partial_cmp`] on your type's fields. Here
998 /// is an example of `Person` types who have a floating-point `height` field that
999 /// is the only field to be used for sorting:
1000 ///
1001 /// ```
1002 /// use std::cmp::Ordering;
1003 ///
1004 /// struct Person {
1005 ///     id: u32,
1006 ///     name: String,
1007 ///     height: f64,
1008 /// }
1009 ///
1010 /// impl PartialOrd for Person {
1011 ///     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1012 ///         self.height.partial_cmp(&other.height)
1013 ///     }
1014 /// }
1015 ///
1016 /// impl PartialEq for Person {
1017 ///     fn eq(&self, other: &Self) -> bool {
1018 ///         self.height == other.height
1019 ///     }
1020 /// }
1021 /// ```
1022 ///
1023 /// # Examples
1024 ///
1025 /// ```
1026 /// let x: u32 = 0;
1027 /// let y: u32 = 1;
1028 ///
1029 /// assert_eq!(x < y, true);
1030 /// assert_eq!(x.lt(&y), true);
1031 /// ```
1032 ///
1033 /// [`partial_cmp`]: PartialOrd::partial_cmp
1034 /// [`cmp`]: Ord::cmp
1035 #[lang = "partial_ord"]
1036 #[stable(feature = "rust1", since = "1.0.0")]
1037 #[doc(alias = ">")]
1038 #[doc(alias = "<")]
1039 #[doc(alias = "<=")]
1040 #[doc(alias = ">=")]
1041 #[cfg_attr(
1042     bootstrap,
1043     rustc_on_unimplemented(
1044         message = "can't compare `{Self}` with `{Rhs}`",
1045         label = "no implementation for `{Self} < {Rhs}` and `{Self} > {Rhs}`",
1046     )
1047 )]
1048 #[cfg_attr(
1049     not(bootstrap),
1050     rustc_on_unimplemented(
1051         message = "can't compare `{Self}` with `{Rhs}`",
1052         label = "no implementation for `{Self} < {Rhs}` and `{Self} > {Rhs}`",
1053         append_const_msg,
1054     )
1055 )]
1056 #[rustc_diagnostic_item = "PartialOrd"]
1057 pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
1058     /// This method returns an ordering between `self` and `other` values if one exists.
1059     ///
1060     /// # Examples
1061     ///
1062     /// ```
1063     /// use std::cmp::Ordering;
1064     ///
1065     /// let result = 1.0.partial_cmp(&2.0);
1066     /// assert_eq!(result, Some(Ordering::Less));
1067     ///
1068     /// let result = 1.0.partial_cmp(&1.0);
1069     /// assert_eq!(result, Some(Ordering::Equal));
1070     ///
1071     /// let result = 2.0.partial_cmp(&1.0);
1072     /// assert_eq!(result, Some(Ordering::Greater));
1073     /// ```
1074     ///
1075     /// When comparison is impossible:
1076     ///
1077     /// ```
1078     /// let result = f64::NAN.partial_cmp(&1.0);
1079     /// assert_eq!(result, None);
1080     /// ```
1081     #[must_use]
1082     #[stable(feature = "rust1", since = "1.0.0")]
1083     fn partial_cmp(&self, other: &Rhs) -> Option<Ordering>;
1084
1085     /// This method tests less than (for `self` and `other`) and is used by the `<` operator.
1086     ///
1087     /// # Examples
1088     ///
1089     /// ```
1090     /// let result = 1.0 < 2.0;
1091     /// assert_eq!(result, true);
1092     ///
1093     /// let result = 2.0 < 1.0;
1094     /// assert_eq!(result, false);
1095     /// ```
1096     #[inline]
1097     #[must_use]
1098     #[stable(feature = "rust1", since = "1.0.0")]
1099     #[default_method_body_is_const]
1100     fn lt(&self, other: &Rhs) -> bool {
1101         matches!(self.partial_cmp(other), Some(Less))
1102     }
1103
1104     /// This method tests less than or equal to (for `self` and `other`) and is used by the `<=`
1105     /// operator.
1106     ///
1107     /// # Examples
1108     ///
1109     /// ```
1110     /// let result = 1.0 <= 2.0;
1111     /// assert_eq!(result, true);
1112     ///
1113     /// let result = 2.0 <= 2.0;
1114     /// assert_eq!(result, true);
1115     /// ```
1116     #[inline]
1117     #[must_use]
1118     #[stable(feature = "rust1", since = "1.0.0")]
1119     #[default_method_body_is_const]
1120     fn le(&self, other: &Rhs) -> bool {
1121         // Pattern `Some(Less | Eq)` optimizes worse than negating `None | Some(Greater)`.
1122         // FIXME: The root cause was fixed upstream in LLVM with:
1123         // https://github.com/llvm/llvm-project/commit/9bad7de9a3fb844f1ca2965f35d0c2a3d1e11775
1124         // Revert this workaround once support for LLVM 12 gets dropped.
1125         !matches!(self.partial_cmp(other), None | Some(Greater))
1126     }
1127
1128     /// This method tests greater than (for `self` and `other`) and is used by the `>` operator.
1129     ///
1130     /// # Examples
1131     ///
1132     /// ```
1133     /// let result = 1.0 > 2.0;
1134     /// assert_eq!(result, false);
1135     ///
1136     /// let result = 2.0 > 2.0;
1137     /// assert_eq!(result, false);
1138     /// ```
1139     #[inline]
1140     #[must_use]
1141     #[stable(feature = "rust1", since = "1.0.0")]
1142     #[default_method_body_is_const]
1143     fn gt(&self, other: &Rhs) -> bool {
1144         matches!(self.partial_cmp(other), Some(Greater))
1145     }
1146
1147     /// This method tests greater than or equal to (for `self` and `other`) and is used by the `>=`
1148     /// operator.
1149     ///
1150     /// # Examples
1151     ///
1152     /// ```
1153     /// let result = 2.0 >= 1.0;
1154     /// assert_eq!(result, true);
1155     ///
1156     /// let result = 2.0 >= 2.0;
1157     /// assert_eq!(result, true);
1158     /// ```
1159     #[inline]
1160     #[must_use]
1161     #[stable(feature = "rust1", since = "1.0.0")]
1162     #[default_method_body_is_const]
1163     fn ge(&self, other: &Rhs) -> bool {
1164         matches!(self.partial_cmp(other), Some(Greater | Equal))
1165     }
1166 }
1167
1168 /// Derive macro generating an impl of the trait `PartialOrd`.
1169 #[rustc_builtin_macro]
1170 #[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
1171 #[allow_internal_unstable(core_intrinsics)]
1172 pub macro PartialOrd($item:item) {
1173     /* compiler built-in */
1174 }
1175
1176 /// Compares and returns the minimum of two values.
1177 ///
1178 /// Returns the first argument if the comparison determines them to be equal.
1179 ///
1180 /// Internally uses an alias to [`Ord::min`].
1181 ///
1182 /// # Examples
1183 ///
1184 /// ```
1185 /// use std::cmp;
1186 ///
1187 /// assert_eq!(1, cmp::min(1, 2));
1188 /// assert_eq!(2, cmp::min(2, 2));
1189 /// ```
1190 #[inline]
1191 #[must_use]
1192 #[stable(feature = "rust1", since = "1.0.0")]
1193 #[cfg_attr(not(test), rustc_diagnostic_item = "cmp_min")]
1194 pub fn min<T: Ord>(v1: T, v2: T) -> T {
1195     v1.min(v2)
1196 }
1197
1198 /// Returns the minimum of two values with respect to the specified comparison function.
1199 ///
1200 /// Returns the first argument if the comparison determines them to be equal.
1201 ///
1202 /// # Examples
1203 ///
1204 /// ```
1205 /// use std::cmp;
1206 ///
1207 /// assert_eq!(cmp::min_by(-2, 1, |x: &i32, y: &i32| x.abs().cmp(&y.abs())), 1);
1208 /// assert_eq!(cmp::min_by(-2, 2, |x: &i32, y: &i32| x.abs().cmp(&y.abs())), -2);
1209 /// ```
1210 #[inline]
1211 #[must_use]
1212 #[stable(feature = "cmp_min_max_by", since = "1.53.0")]
1213 pub fn min_by<T, F: FnOnce(&T, &T) -> Ordering>(v1: T, v2: T, compare: F) -> T {
1214     match compare(&v1, &v2) {
1215         Ordering::Less | Ordering::Equal => v1,
1216         Ordering::Greater => v2,
1217     }
1218 }
1219
1220 /// Returns the element that gives the minimum value from the specified function.
1221 ///
1222 /// Returns the first argument if the comparison determines them to be equal.
1223 ///
1224 /// # Examples
1225 ///
1226 /// ```
1227 /// use std::cmp;
1228 ///
1229 /// assert_eq!(cmp::min_by_key(-2, 1, |x: &i32| x.abs()), 1);
1230 /// assert_eq!(cmp::min_by_key(-2, 2, |x: &i32| x.abs()), -2);
1231 /// ```
1232 #[inline]
1233 #[must_use]
1234 #[stable(feature = "cmp_min_max_by", since = "1.53.0")]
1235 pub fn min_by_key<T, F: FnMut(&T) -> K, K: Ord>(v1: T, v2: T, mut f: F) -> T {
1236     min_by(v1, v2, |v1, v2| f(v1).cmp(&f(v2)))
1237 }
1238
1239 /// Compares and returns the maximum of two values.
1240 ///
1241 /// Returns the second argument if the comparison determines them to be equal.
1242 ///
1243 /// Internally uses an alias to [`Ord::max`].
1244 ///
1245 /// # Examples
1246 ///
1247 /// ```
1248 /// use std::cmp;
1249 ///
1250 /// assert_eq!(2, cmp::max(1, 2));
1251 /// assert_eq!(2, cmp::max(2, 2));
1252 /// ```
1253 #[inline]
1254 #[must_use]
1255 #[stable(feature = "rust1", since = "1.0.0")]
1256 #[cfg_attr(not(test), rustc_diagnostic_item = "cmp_max")]
1257 pub fn max<T: Ord>(v1: T, v2: T) -> T {
1258     v1.max(v2)
1259 }
1260
1261 /// Returns the maximum of two values with respect to the specified comparison function.
1262 ///
1263 /// Returns the second argument if the comparison determines them to be equal.
1264 ///
1265 /// # Examples
1266 ///
1267 /// ```
1268 /// use std::cmp;
1269 ///
1270 /// assert_eq!(cmp::max_by(-2, 1, |x: &i32, y: &i32| x.abs().cmp(&y.abs())), -2);
1271 /// assert_eq!(cmp::max_by(-2, 2, |x: &i32, y: &i32| x.abs().cmp(&y.abs())), 2);
1272 /// ```
1273 #[inline]
1274 #[must_use]
1275 #[stable(feature = "cmp_min_max_by", since = "1.53.0")]
1276 pub fn max_by<T, F: FnOnce(&T, &T) -> Ordering>(v1: T, v2: T, compare: F) -> T {
1277     match compare(&v1, &v2) {
1278         Ordering::Less | Ordering::Equal => v2,
1279         Ordering::Greater => v1,
1280     }
1281 }
1282
1283 /// Returns the element that gives the maximum value from the specified function.
1284 ///
1285 /// Returns the second argument if the comparison determines them to be equal.
1286 ///
1287 /// # Examples
1288 ///
1289 /// ```
1290 /// use std::cmp;
1291 ///
1292 /// assert_eq!(cmp::max_by_key(-2, 1, |x: &i32| x.abs()), -2);
1293 /// assert_eq!(cmp::max_by_key(-2, 2, |x: &i32| x.abs()), 2);
1294 /// ```
1295 #[inline]
1296 #[must_use]
1297 #[stable(feature = "cmp_min_max_by", since = "1.53.0")]
1298 pub fn max_by_key<T, F: FnMut(&T) -> K, K: Ord>(v1: T, v2: T, mut f: F) -> T {
1299     max_by(v1, v2, |v1, v2| f(v1).cmp(&f(v2)))
1300 }
1301
1302 // Implementation of PartialEq, Eq, PartialOrd and Ord for primitive types
1303 mod impls {
1304     use crate::cmp::Ordering::{self, Equal, Greater, Less};
1305     use crate::hint::unreachable_unchecked;
1306
1307     macro_rules! partial_eq_impl {
1308         ($($t:ty)*) => ($(
1309             #[stable(feature = "rust1", since = "1.0.0")]
1310             impl PartialEq for $t {
1311                 #[inline]
1312                 fn eq(&self, other: &$t) -> bool { (*self) == (*other) }
1313                 #[inline]
1314                 fn ne(&self, other: &$t) -> bool { (*self) != (*other) }
1315             }
1316         )*)
1317     }
1318
1319     #[stable(feature = "rust1", since = "1.0.0")]
1320     impl PartialEq for () {
1321         #[inline]
1322         fn eq(&self, _other: &()) -> bool {
1323             true
1324         }
1325         #[inline]
1326         fn ne(&self, _other: &()) -> bool {
1327             false
1328         }
1329     }
1330
1331     partial_eq_impl! {
1332         bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64
1333     }
1334
1335     macro_rules! eq_impl {
1336         ($($t:ty)*) => ($(
1337             #[stable(feature = "rust1", since = "1.0.0")]
1338             impl Eq for $t {}
1339         )*)
1340     }
1341
1342     eq_impl! { () bool char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
1343
1344     macro_rules! partial_ord_impl {
1345         ($($t:ty)*) => ($(
1346             #[stable(feature = "rust1", since = "1.0.0")]
1347             impl PartialOrd for $t {
1348                 #[inline]
1349                 fn partial_cmp(&self, other: &$t) -> Option<Ordering> {
1350                     match (self <= other, self >= other) {
1351                         (false, false) => None,
1352                         (false, true) => Some(Greater),
1353                         (true, false) => Some(Less),
1354                         (true, true) => Some(Equal),
1355                     }
1356                 }
1357                 #[inline]
1358                 fn lt(&self, other: &$t) -> bool { (*self) < (*other) }
1359                 #[inline]
1360                 fn le(&self, other: &$t) -> bool { (*self) <= (*other) }
1361                 #[inline]
1362                 fn ge(&self, other: &$t) -> bool { (*self) >= (*other) }
1363                 #[inline]
1364                 fn gt(&self, other: &$t) -> bool { (*self) > (*other) }
1365             }
1366         )*)
1367     }
1368
1369     #[stable(feature = "rust1", since = "1.0.0")]
1370     impl PartialOrd for () {
1371         #[inline]
1372         fn partial_cmp(&self, _: &()) -> Option<Ordering> {
1373             Some(Equal)
1374         }
1375     }
1376
1377     #[stable(feature = "rust1", since = "1.0.0")]
1378     impl PartialOrd for bool {
1379         #[inline]
1380         fn partial_cmp(&self, other: &bool) -> Option<Ordering> {
1381             Some(self.cmp(other))
1382         }
1383     }
1384
1385     partial_ord_impl! { f32 f64 }
1386
1387     macro_rules! ord_impl {
1388         ($($t:ty)*) => ($(
1389             #[stable(feature = "rust1", since = "1.0.0")]
1390             impl PartialOrd for $t {
1391                 #[inline]
1392                 fn partial_cmp(&self, other: &$t) -> Option<Ordering> {
1393                     Some(self.cmp(other))
1394                 }
1395                 #[inline]
1396                 fn lt(&self, other: &$t) -> bool { (*self) < (*other) }
1397                 #[inline]
1398                 fn le(&self, other: &$t) -> bool { (*self) <= (*other) }
1399                 #[inline]
1400                 fn ge(&self, other: &$t) -> bool { (*self) >= (*other) }
1401                 #[inline]
1402                 fn gt(&self, other: &$t) -> bool { (*self) > (*other) }
1403             }
1404
1405             #[stable(feature = "rust1", since = "1.0.0")]
1406             impl Ord for $t {
1407                 #[inline]
1408                 fn cmp(&self, other: &$t) -> Ordering {
1409                     // The order here is important to generate more optimal assembly.
1410                     // See <https://github.com/rust-lang/rust/issues/63758> for more info.
1411                     if *self < *other { Less }
1412                     else if *self == *other { Equal }
1413                     else { Greater }
1414                 }
1415             }
1416         )*)
1417     }
1418
1419     #[stable(feature = "rust1", since = "1.0.0")]
1420     impl Ord for () {
1421         #[inline]
1422         fn cmp(&self, _other: &()) -> Ordering {
1423             Equal
1424         }
1425     }
1426
1427     #[stable(feature = "rust1", since = "1.0.0")]
1428     impl Ord for bool {
1429         #[inline]
1430         fn cmp(&self, other: &bool) -> Ordering {
1431             // Casting to i8's and converting the difference to an Ordering generates
1432             // more optimal assembly.
1433             // See <https://github.com/rust-lang/rust/issues/66780> for more info.
1434             match (*self as i8) - (*other as i8) {
1435                 -1 => Less,
1436                 0 => Equal,
1437                 1 => Greater,
1438                 // SAFETY: bool as i8 returns 0 or 1, so the difference can't be anything else
1439                 _ => unsafe { unreachable_unchecked() },
1440             }
1441         }
1442     }
1443
1444     ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
1445
1446     #[unstable(feature = "never_type", issue = "35121")]
1447     impl PartialEq for ! {
1448         fn eq(&self, _: &!) -> bool {
1449             *self
1450         }
1451     }
1452
1453     #[unstable(feature = "never_type", issue = "35121")]
1454     impl Eq for ! {}
1455
1456     #[unstable(feature = "never_type", issue = "35121")]
1457     impl PartialOrd for ! {
1458         fn partial_cmp(&self, _: &!) -> Option<Ordering> {
1459             *self
1460         }
1461     }
1462
1463     #[unstable(feature = "never_type", issue = "35121")]
1464     impl Ord for ! {
1465         fn cmp(&self, _: &!) -> Ordering {
1466             *self
1467         }
1468     }
1469
1470     // & pointers
1471
1472     #[stable(feature = "rust1", since = "1.0.0")]
1473     impl<A: ?Sized, B: ?Sized> PartialEq<&B> for &A
1474     where
1475         A: PartialEq<B>,
1476     {
1477         #[inline]
1478         fn eq(&self, other: &&B) -> bool {
1479             PartialEq::eq(*self, *other)
1480         }
1481         #[inline]
1482         fn ne(&self, other: &&B) -> bool {
1483             PartialEq::ne(*self, *other)
1484         }
1485     }
1486     #[stable(feature = "rust1", since = "1.0.0")]
1487     impl<A: ?Sized, B: ?Sized> PartialOrd<&B> for &A
1488     where
1489         A: PartialOrd<B>,
1490     {
1491         #[inline]
1492         fn partial_cmp(&self, other: &&B) -> Option<Ordering> {
1493             PartialOrd::partial_cmp(*self, *other)
1494         }
1495         #[inline]
1496         fn lt(&self, other: &&B) -> bool {
1497             PartialOrd::lt(*self, *other)
1498         }
1499         #[inline]
1500         fn le(&self, other: &&B) -> bool {
1501             PartialOrd::le(*self, *other)
1502         }
1503         #[inline]
1504         fn gt(&self, other: &&B) -> bool {
1505             PartialOrd::gt(*self, *other)
1506         }
1507         #[inline]
1508         fn ge(&self, other: &&B) -> bool {
1509             PartialOrd::ge(*self, *other)
1510         }
1511     }
1512     #[stable(feature = "rust1", since = "1.0.0")]
1513     impl<A: ?Sized> Ord for &A
1514     where
1515         A: Ord,
1516     {
1517         #[inline]
1518         fn cmp(&self, other: &Self) -> Ordering {
1519             Ord::cmp(*self, *other)
1520         }
1521     }
1522     #[stable(feature = "rust1", since = "1.0.0")]
1523     impl<A: ?Sized> Eq for &A where A: Eq {}
1524
1525     // &mut pointers
1526
1527     #[stable(feature = "rust1", since = "1.0.0")]
1528     impl<A: ?Sized, B: ?Sized> PartialEq<&mut B> for &mut A
1529     where
1530         A: PartialEq<B>,
1531     {
1532         #[inline]
1533         fn eq(&self, other: &&mut B) -> bool {
1534             PartialEq::eq(*self, *other)
1535         }
1536         #[inline]
1537         fn ne(&self, other: &&mut B) -> bool {
1538             PartialEq::ne(*self, *other)
1539         }
1540     }
1541     #[stable(feature = "rust1", since = "1.0.0")]
1542     impl<A: ?Sized, B: ?Sized> PartialOrd<&mut B> for &mut A
1543     where
1544         A: PartialOrd<B>,
1545     {
1546         #[inline]
1547         fn partial_cmp(&self, other: &&mut B) -> Option<Ordering> {
1548             PartialOrd::partial_cmp(*self, *other)
1549         }
1550         #[inline]
1551         fn lt(&self, other: &&mut B) -> bool {
1552             PartialOrd::lt(*self, *other)
1553         }
1554         #[inline]
1555         fn le(&self, other: &&mut B) -> bool {
1556             PartialOrd::le(*self, *other)
1557         }
1558         #[inline]
1559         fn gt(&self, other: &&mut B) -> bool {
1560             PartialOrd::gt(*self, *other)
1561         }
1562         #[inline]
1563         fn ge(&self, other: &&mut B) -> bool {
1564             PartialOrd::ge(*self, *other)
1565         }
1566     }
1567     #[stable(feature = "rust1", since = "1.0.0")]
1568     impl<A: ?Sized> Ord for &mut A
1569     where
1570         A: Ord,
1571     {
1572         #[inline]
1573         fn cmp(&self, other: &Self) -> Ordering {
1574             Ord::cmp(*self, *other)
1575         }
1576     }
1577     #[stable(feature = "rust1", since = "1.0.0")]
1578     impl<A: ?Sized> Eq for &mut A where A: Eq {}
1579
1580     #[stable(feature = "rust1", since = "1.0.0")]
1581     impl<A: ?Sized, B: ?Sized> PartialEq<&mut B> for &A
1582     where
1583         A: PartialEq<B>,
1584     {
1585         #[inline]
1586         fn eq(&self, other: &&mut B) -> bool {
1587             PartialEq::eq(*self, *other)
1588         }
1589         #[inline]
1590         fn ne(&self, other: &&mut B) -> bool {
1591             PartialEq::ne(*self, *other)
1592         }
1593     }
1594
1595     #[stable(feature = "rust1", since = "1.0.0")]
1596     impl<A: ?Sized, B: ?Sized> PartialEq<&B> for &mut A
1597     where
1598         A: PartialEq<B>,
1599     {
1600         #[inline]
1601         fn eq(&self, other: &&B) -> bool {
1602             PartialEq::eq(*self, *other)
1603         }
1604         #[inline]
1605         fn ne(&self, other: &&B) -> bool {
1606             PartialEq::ne(*self, *other)
1607         }
1608     }
1609 }