Struct ordered_float::NotNan
source · [−]#[repr(transparent)]pub struct NotNan<T>(_);
Expand description
A wrapper around floats providing an implementation of Eq
, Ord
and Hash
.
A NaN value cannot be stored in this type.
use ordered_float::NotNan;
let mut v = [
NotNan::new(2.0).unwrap(),
NotNan::new(1.0).unwrap(),
];
v.sort();
assert_eq!(v, [1.0, 2.0]);
Because NotNan
implements Ord
and Eq
, it can be used as a key in a HashSet
,
HashMap
, BTreeMap
, or BTreeSet
(unlike the primitive f32
or f64
types):
let mut s: HashSet<NotNan<f32>> = HashSet::new();
let key = NotNan::new(1.0).unwrap();
s.insert(key);
assert!(s.contains(&key));
Arithmetic on NotNan values will panic if it produces a NaN value:
let a = NotNan::new(std::f32::INFINITY).unwrap();
let b = NotNan::new(std::f32::NEG_INFINITY).unwrap();
// This will panic:
let c = a + b;
Implementations
sourceimpl<T: Float> NotNan<T>
impl<T: Float> NotNan<T>
sourcepub fn new(val: T) -> Result<Self, FloatIsNan>
pub fn new(val: T) -> Result<Self, FloatIsNan>
Create a NotNan
value.
Returns Err
if val
is NaN
sourceimpl<T> NotNan<T>
impl<T> NotNan<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Get the value out.
sourcepub const unsafe fn new_unchecked(val: T) -> Self
pub const unsafe fn new_unchecked(val: T) -> Self
Create a NotNan
value from a value that is guaranteed to not be NaN
Safety
Behaviour is undefined if val
is NaN
sourcepub const unsafe fn unchecked_new(val: T) -> Self
👎 Deprecated since 2.5.0: Please use the new_unchecked function instead.
pub const unsafe fn unchecked_new(val: T) -> Self
Please use the new_unchecked function instead.
Create a NotNan
value from a value that is guaranteed to not be NaN
Safety
Behaviour is undefined if val
is NaN
Trait Implementations
sourceimpl<T: Float> Add<T> for NotNan<T>
impl<T: Float> Add<T> for NotNan<T>
Adds a float directly.
Panics if the provided value is NaN or the computation results in NaN
sourceimpl<T: Float + AddAssign> AddAssign<&'_ NotNan<T>> for NotNan<T>
impl<T: Float + AddAssign> AddAssign<&'_ NotNan<T>> for NotNan<T>
sourcefn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Performs the +=
operation. Read more
sourceimpl<T: Float + AddAssign> AddAssign<&'_ T> for NotNan<T>
impl<T: Float + AddAssign> AddAssign<&'_ T> for NotNan<T>
sourcefn add_assign(&mut self, other: &T)
fn add_assign(&mut self, other: &T)
Performs the +=
operation. Read more
sourceimpl<T: Float + AddAssign> AddAssign<NotNan<T>> for NotNan<T>
impl<T: Float + AddAssign> AddAssign<NotNan<T>> for NotNan<T>
sourcefn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the +=
operation. Read more
sourceimpl<T: Float + AddAssign> AddAssign<T> for NotNan<T>
impl<T: Float + AddAssign> AddAssign<T> for NotNan<T>
sourcefn add_assign(&mut self, other: T)
fn add_assign(&mut self, other: T)
Performs the +=
operation. Read more
sourceimpl Distribution<NotNan<f32>> for Standard
impl Distribution<NotNan<f32>> for Standard
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<NotNan<f32>> for Open01
impl Distribution<NotNan<f32>> for Open01
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<NotNan<f32>> for OpenClosed01
impl Distribution<NotNan<f32>> for OpenClosed01
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f32>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<NotNan<f64>> for Standard
impl Distribution<NotNan<f64>> for Standard
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<NotNan<f64>> for Open01
impl Distribution<NotNan<f64>> for Open01
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<NotNan<f64>> for OpenClosed01
impl Distribution<NotNan<f64>> for OpenClosed01
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> NotNan<f64>
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl<T: Float> Div<T> for NotNan<T>
impl<T: Float> Div<T> for NotNan<T>
Divides a float directly.
Panics if the provided value is NaN or the computation results in NaN
sourceimpl<T: Float + DivAssign> DivAssign<&'_ NotNan<T>> for NotNan<T>
impl<T: Float + DivAssign> DivAssign<&'_ NotNan<T>> for NotNan<T>
sourcefn div_assign(&mut self, other: &Self)
fn div_assign(&mut self, other: &Self)
Performs the /=
operation. Read more
sourceimpl<T: Float + DivAssign> DivAssign<&'_ T> for NotNan<T>
impl<T: Float + DivAssign> DivAssign<&'_ T> for NotNan<T>
sourcefn div_assign(&mut self, other: &T)
fn div_assign(&mut self, other: &T)
Performs the /=
operation. Read more
sourceimpl<T: Float + DivAssign> DivAssign<NotNan<T>> for NotNan<T>
impl<T: Float + DivAssign> DivAssign<NotNan<T>> for NotNan<T>
sourcefn div_assign(&mut self, other: Self)
fn div_assign(&mut self, other: Self)
Performs the /=
operation. Read more
sourceimpl<T: Float + DivAssign> DivAssign<T> for NotNan<T>
impl<T: Float + DivAssign> DivAssign<T> for NotNan<T>
sourcefn div_assign(&mut self, other: T)
fn div_assign(&mut self, other: T)
Performs the /=
operation. Read more
sourceimpl<T: Float + FromPrimitive> FromPrimitive for NotNan<T>
impl<T: Float + FromPrimitive> FromPrimitive for NotNan<T>
sourcefn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an i64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an u64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an isize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an i8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an i16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an i32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a usize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an u8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an u16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an u32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_f32(n: f32) -> Option<Self>
fn from_f32(n: f32) -> Option<Self>
Converts a f32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourcefn from_f64(n: f64) -> Option<Self>
fn from_f64(n: f64) -> Option<Self>
Converts a f64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
sourceimpl<T: Float + FromStr> FromStr for NotNan<T>
impl<T: Float + FromStr> FromStr for NotNan<T>
sourcefn from_str(src: &str) -> Result<Self, Self::Err>
fn from_str(src: &str) -> Result<Self, Self::Err>
Convert a &str to NotNan
. Returns an error if the string fails to parse,
or if the resulting value is NaN
use ordered_float::NotNan;
assert!("-10".parse::<NotNan<f32>>().is_ok());
assert!("abc".parse::<NotNan<f32>>().is_err());
assert!("NaN".parse::<NotNan<f32>>().is_err());
type Err = ParseNotNanError<T::Err>
type Err = ParseNotNanError<T::Err>
The associated error which can be returned from parsing.
sourceimpl<T: Float> Mul<T> for NotNan<T>
impl<T: Float> Mul<T> for NotNan<T>
Multiplies a float directly.
Panics if the provided value is NaN or the computation results in NaN
sourceimpl<T: Float + MulAssign> MulAssign<&'_ NotNan<T>> for NotNan<T>
impl<T: Float + MulAssign> MulAssign<&'_ NotNan<T>> for NotNan<T>
sourcefn mul_assign(&mut self, other: &Self)
fn mul_assign(&mut self, other: &Self)
Performs the *=
operation. Read more
sourceimpl<T: Float + MulAssign> MulAssign<&'_ T> for NotNan<T>
impl<T: Float + MulAssign> MulAssign<&'_ T> for NotNan<T>
sourcefn mul_assign(&mut self, other: &T)
fn mul_assign(&mut self, other: &T)
Performs the *=
operation. Read more
sourceimpl<T: Float + MulAssign> MulAssign<NotNan<T>> for NotNan<T>
impl<T: Float + MulAssign> MulAssign<NotNan<T>> for NotNan<T>
sourcefn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the *=
operation. Read more
sourceimpl<T: Float + MulAssign> MulAssign<T> for NotNan<T>
impl<T: Float + MulAssign> MulAssign<T> for NotNan<T>
sourcefn mul_assign(&mut self, other: T)
fn mul_assign(&mut self, other: T)
Performs the *=
operation. Read more
sourceimpl<T: Float> Num for NotNan<T>
impl<T: Float> Num for NotNan<T>
type FromStrRadixErr = ParseNotNanError<T::FromStrRadixErr>
sourcefn from_str_radix(src: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>
fn from_str_radix(src: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>
Convert from a string and radix (typically 2..=36
). Read more
sourceimpl<T: Float> NumCast for NotNan<T>
impl<T: Float> NumCast for NotNan<T>
sourcefn from<F: ToPrimitive>(n: F) -> Option<Self>
fn from<F: ToPrimitive>(n: F) -> Option<Self>
Creates a number from another value that can be converted into
a primitive via the ToPrimitive
trait. If the source value cannot be
represented by the target type, then None
is returned. Read more
sourceimpl<T: Float> Ord for NotNan<T>
impl<T: Float> Ord for NotNan<T>
sourceimpl<T: PartialOrd> PartialOrd<NotNan<T>> for NotNan<T>
impl<T: PartialOrd> PartialOrd<NotNan<T>> for NotNan<T>
sourcefn partial_cmp(&self, other: &NotNan<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &NotNan<T>) -> 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<T: Float> Rem<T> for NotNan<T>
impl<T: Float> Rem<T> for NotNan<T>
Calculates %
with a float directly.
Panics if the provided value is NaN or the computation results in NaN
sourceimpl<T: Float + RemAssign> RemAssign<&'_ NotNan<T>> for NotNan<T>
impl<T: Float + RemAssign> RemAssign<&'_ NotNan<T>> for NotNan<T>
sourcefn rem_assign(&mut self, other: &Self)
fn rem_assign(&mut self, other: &Self)
Performs the %=
operation. Read more
sourceimpl<T: Float + RemAssign> RemAssign<&'_ T> for NotNan<T>
impl<T: Float + RemAssign> RemAssign<&'_ T> for NotNan<T>
sourcefn rem_assign(&mut self, other: &T)
fn rem_assign(&mut self, other: &T)
Performs the %=
operation. Read more
sourceimpl<T: Float + RemAssign> RemAssign<NotNan<T>> for NotNan<T>
impl<T: Float + RemAssign> RemAssign<NotNan<T>> for NotNan<T>
sourcefn rem_assign(&mut self, other: Self)
fn rem_assign(&mut self, other: Self)
Performs the %=
operation. Read more
sourceimpl<T: Float + RemAssign> RemAssign<T> for NotNan<T>
impl<T: Float + RemAssign> RemAssign<T> for NotNan<T>
sourcefn rem_assign(&mut self, other: T)
fn rem_assign(&mut self, other: T)
Performs the %=
operation. Read more
sourceimpl SampleUniform for NotNan<f32>
impl SampleUniform for NotNan<f32>
sourceimpl SampleUniform for NotNan<f64>
impl SampleUniform for NotNan<f64>
sourceimpl<T: Float + Signed> Signed for NotNan<T>
impl<T: Float + Signed> Signed for NotNan<T>
sourcefn is_positive(&self) -> bool
fn is_positive(&self) -> bool
Returns true if the number is positive and false if the number is zero or negative.
sourcefn is_negative(&self) -> bool
fn is_negative(&self) -> bool
Returns true if the number is negative and false if the number is zero or positive.
sourceimpl<T: Float> Sub<T> for NotNan<T>
impl<T: Float> Sub<T> for NotNan<T>
Subtracts a float directly.
Panics if the provided value is NaN or the computation results in NaN
sourceimpl<T: Float + SubAssign> SubAssign<&'_ NotNan<T>> for NotNan<T>
impl<T: Float + SubAssign> SubAssign<&'_ NotNan<T>> for NotNan<T>
sourcefn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Performs the -=
operation. Read more
sourceimpl<T: Float + SubAssign> SubAssign<&'_ T> for NotNan<T>
impl<T: Float + SubAssign> SubAssign<&'_ T> for NotNan<T>
sourcefn sub_assign(&mut self, other: &T)
fn sub_assign(&mut self, other: &T)
Performs the -=
operation. Read more
sourceimpl<T: Float + SubAssign> SubAssign<NotNan<T>> for NotNan<T>
impl<T: Float + SubAssign> SubAssign<NotNan<T>> for NotNan<T>
sourcefn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the -=
operation. Read more
sourceimpl<T: Float + SubAssign> SubAssign<T> for NotNan<T>
impl<T: Float + SubAssign> SubAssign<T> for NotNan<T>
sourcefn sub_assign(&mut self, other: T)
fn sub_assign(&mut self, other: T)
Performs the -=
operation. Read more
sourceimpl<T: Float + Sum> Sum<NotNan<T>> for NotNan<T>
impl<T: Float + Sum> Sum<NotNan<T>> for NotNan<T>
Adds a float directly.
Panics if the provided value is NaN.
sourceimpl<T: Float> ToPrimitive for NotNan<T>
impl<T: Float> ToPrimitive for NotNan<T>
sourcefn to_i64(&self) -> Option<i64>
fn to_i64(&self) -> Option<i64>
Converts the value of self
to an i64
. If the value cannot be
represented by an i64
, then None
is returned. Read more
sourcefn to_u64(&self) -> Option<u64>
fn to_u64(&self) -> Option<u64>
Converts the value of self
to a u64
. If the value cannot be
represented by a u64
, then None
is returned. Read more
sourcefn to_isize(&self) -> Option<isize>
fn to_isize(&self) -> Option<isize>
Converts the value of self
to an isize
. If the value cannot be
represented by an isize
, then None
is returned. Read more
sourcefn to_i8(&self) -> Option<i8>
fn to_i8(&self) -> Option<i8>
Converts the value of self
to an i8
. If the value cannot be
represented by an i8
, then None
is returned. Read more
sourcefn to_i16(&self) -> Option<i16>
fn to_i16(&self) -> Option<i16>
Converts the value of self
to an i16
. If the value cannot be
represented by an i16
, then None
is returned. Read more
sourcefn to_i32(&self) -> Option<i32>
fn to_i32(&self) -> Option<i32>
Converts the value of self
to an i32
. If the value cannot be
represented by an i32
, then None
is returned. Read more
sourcefn to_usize(&self) -> Option<usize>
fn to_usize(&self) -> Option<usize>
Converts the value of self
to a usize
. If the value cannot be
represented by a usize
, then None
is returned. Read more
sourcefn to_u8(&self) -> Option<u8>
fn to_u8(&self) -> Option<u8>
Converts the value of self
to a u8
. If the value cannot be
represented by a u8
, then None
is returned. Read more
sourcefn to_u16(&self) -> Option<u16>
fn to_u16(&self) -> Option<u16>
Converts the value of self
to a u16
. If the value cannot be
represented by a u16
, then None
is returned. Read more
sourcefn to_u32(&self) -> Option<u32>
fn to_u32(&self) -> Option<u32>
Converts the value of self
to a u32
. If the value cannot be
represented by a u32
, then None
is returned. Read more
sourcefn to_f32(&self) -> Option<f32>
fn to_f32(&self) -> Option<f32>
Converts the value of self
to an f32
. Overflows may map to positive
or negative inifinity, otherwise None
is returned if the value cannot
be represented by an f32
. Read more
sourcefn to_f64(&self) -> Option<f64>
fn to_f64(&self) -> Option<f64>
Converts the value of self
to an f64
. Overflows may map to positive
or negative inifinity, otherwise None
is returned if the value cannot
be represented by an f64
. Read more
impl<T: Copy> Copy for NotNan<T>
impl<T: Float + PartialEq> Eq for NotNan<T>
impl<T> StructuralPartialEq for NotNan<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for NotNan<T> where
T: RefUnwindSafe,
impl<T> Send for NotNan<T> where
T: Send,
impl<T> Sync for NotNan<T> where
T: Sync,
impl<T> Unpin for NotNan<T> where
T: Unpin,
impl<T> UnwindSafe for NotNan<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<T> LowerBounded for T where
T: Bounded,
impl<T> LowerBounded for T where
T: Bounded,
sourceimpl<Borrowed> SampleBorrow<Borrowed> for Borrowed where
Borrowed: SampleUniform,
impl<Borrowed> SampleBorrow<Borrowed> for Borrowed where
Borrowed: SampleUniform,
sourcefn borrow(&self) -> &Borrowed
fn borrow(&self) -> &Borrowed
Immutably borrows from an owned value. See Borrow::borrow
Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more