Struct core::cmp::Reverse 1.19.0[−][src]
#[repr(transparent)]pub struct Reverse<T>(pub T);
A helper struct for reverse ordering.
This struct is a helper to be used with functions like Vec::sort_by_key and
can be used to reverse order a part of a key.
Examples
use std::cmp::Reverse; let mut v = vec![1, 2, 3, 4, 5, 6]; v.sort_by_key(|&num| (num > 3, Reverse(num))); assert_eq!(v, vec![3, 2, 1, 6, 5, 4]);Run
Trait Implementations
impl<T: Ord> Ord for Reverse<T>[src]
impl<T: Ord> Ord for Reverse<T>[src]#[must_use]fn max(self, other: Self) -> Self where
Self: Sized, 1.21.0[src]
#[must_use]fn max(self, other: Self) -> Self where
Self: Sized, 1.21.0[src]Compares and returns the maximum of two values. Read more
impl<T: PartialOrd> PartialOrd<Reverse<T>> for Reverse<T>[src]
impl<T: PartialOrd> PartialOrd<Reverse<T>> for Reverse<T>[src]fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Reverse<T>) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Self) -> bool[src]
fn lt(&self, other: &Self) -> bool[src]This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Self) -> bool[src]
fn le(&self, other: &Self) -> bool[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<T: Copy> Copy for Reverse<T>[src]
impl<T: Eq> Eq for Reverse<T>[src]
impl<T> StructuralEq for Reverse<T>[src]
impl<T> StructuralPartialEq for Reverse<T>[src]
Auto Trait Implementations
impl<T> Send for Reverse<T> where
T: Send,
T: Send,
impl<T> Sync for Reverse<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Reverse<T> where
T: Unpin,
T: Unpin,