pub struct FloatOrd<T>(pub T);
Expand description
A wrapper for floats, that implements total equality and ordering and hashing.
Tuple Fields
0: T
Implementations
Trait Implementations
sourceimpl Ord for FloatOrd<f32>
impl Ord for FloatOrd<f32>
sourceimpl Ord for FloatOrd<f64>
impl Ord for FloatOrd<f64>
sourceimpl PartialOrd<FloatOrd<f32>> for FloatOrd<f32>
impl PartialOrd<FloatOrd<f32>> for FloatOrd<f32>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl PartialOrd<FloatOrd<f64>> for FloatOrd<f64>
impl PartialOrd<FloatOrd<f64>> for FloatOrd<f64>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
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 FloatOrd<T>
impl Eq for FloatOrd<f32>
impl Eq for FloatOrd<f64>
Auto Trait Implementations
impl<T> RefUnwindSafe for FloatOrd<T> where
T: RefUnwindSafe,
impl<T> Send for FloatOrd<T> where
T: Send,
impl<T> Sync for FloatOrd<T> where
T: Sync,
impl<T> Unpin for FloatOrd<T> where
T: Unpin,
impl<T> UnwindSafe for FloatOrd<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.