Struct ordered_float::OrderedFloat[][src]

#[repr(transparent)]
pub struct OrderedFloat<T>(pub T);
Expand description

A wrapper around floats providing implementations of Eq, Ord, and Hash.

NaN is sorted as greater than all other values and equal to itself, in contradiction with the IEEE standard.

use ordered_float::OrderedFloat;
use std::f32::NAN;

let mut v = [OrderedFloat(NAN), OrderedFloat(2.0), OrderedFloat(1.0)];
v.sort();
assert_eq!(v, [OrderedFloat(1.0), OrderedFloat(2.0), OrderedFloat(NAN)]);

Because OrderedFloat 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<OrderedFloat<f32>> = HashSet::new();
s.insert(OrderedFloat(NAN));
assert!(s.contains(&OrderedFloat(NAN)));

Implementations

impl<T: Float> OrderedFloat<T>[src]

pub fn into_inner(self) -> T[src]

Get the value out.

Trait Implementations

impl<'a, T> Add<&'a OrderedFloat<T>> for OrderedFloat<T> where
    T: Add<&'a T>, 
[src]

type Output = OrderedFloat<<T as Add<&'a T>>::Output>

The resulting type after applying the + operator.

fn add(self, other: &'a Self) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T> Add<&'a OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Add
[src]

type Output = OrderedFloat<<&'a T as Add>::Output>

The resulting type after applying the + operator.

fn add(self, other: Self) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T> Add<&'a T> for OrderedFloat<T> where
    T: Add<&'a T>, 
[src]

type Output = OrderedFloat<<T as Add<&'a T>>::Output>

The resulting type after applying the + operator.

fn add(self, other: &'a T) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T> Add<&'a T> for &'a OrderedFloat<T> where
    &'a T: Add
[src]

type Output = OrderedFloat<<&'a T as Add>::Output>

The resulting type after applying the + operator.

fn add(self, other: &'a T) -> Self::Output[src]

Performs the + operation. Read more

impl<T: Add> Add<OrderedFloat<T>> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the + operator.

fn add(self, other: Self) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T> Add<OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Add<T>, 
[src]

type Output = OrderedFloat<<&'a T as Add<T>>::Output>

The resulting type after applying the + operator.

fn add(self, other: OrderedFloat<T>) -> Self::Output[src]

Performs the + operation. Read more

impl<T: Add> Add<T> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the + operator.

fn add(self, other: T) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T> Add<T> for &'a OrderedFloat<T> where
    &'a T: Add<T>, 
[src]

type Output = OrderedFloat<<&'a T as Add<T>>::Output>

The resulting type after applying the + operator.

fn add(self, other: T) -> Self::Output[src]

Performs the + operation. Read more

impl<'a, T: AddAssign<&'a T>> AddAssign<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn add_assign(&mut self, other: &'a Self)[src]

Performs the += operation. Read more

impl<'a, T: AddAssign<&'a T>> AddAssign<&'a T> for OrderedFloat<T>[src]

fn add_assign(&mut self, other: &'a T)[src]

Performs the += operation. Read more

impl<T: AddAssign> AddAssign<OrderedFloat<T>> for OrderedFloat<T>[src]

fn add_assign(&mut self, other: Self)[src]

Performs the += operation. Read more

impl<T: AddAssign> AddAssign<T> for OrderedFloat<T>[src]

fn add_assign(&mut self, other: T)[src]

Performs the += operation. Read more

impl<T: Float> AsMut<T> for OrderedFloat<T>[src]

fn as_mut(&mut self) -> &mut T[src]

Performs the conversion.

impl<T: Float> AsRef<T> for OrderedFloat<T>[src]

fn as_ref(&self) -> &T[src]

Performs the conversion.

impl<T: Bounded> Bounded for OrderedFloat<T>[src]

fn min_value() -> Self[src]

returns the smallest finite number this type can represent

fn max_value() -> Self[src]

returns the largest finite number this type can represent

impl<T: Clone> Clone for OrderedFloat<T>[src]

fn clone(&self) -> OrderedFloat<T>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for OrderedFloat<T>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<T: Default> Default for OrderedFloat<T>[src]

fn default() -> OrderedFloat<T>[src]

Returns the “default value” for a type. Read more

impl<T: Float> Deref for OrderedFloat<T>[src]

type Target = T

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl<T: Float> DerefMut for OrderedFloat<T>[src]

fn deref_mut(&mut self) -> &mut Self::Target[src]

Mutably dereferences the value.

impl<T: Float + Display> Display for OrderedFloat<T>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a, T> Div<&'a OrderedFloat<T>> for OrderedFloat<T> where
    T: Div<&'a T>, 
[src]

type Output = OrderedFloat<<T as Div<&'a T>>::Output>

The resulting type after applying the / operator.

fn div(self, other: &'a Self) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T> Div<&'a OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Div
[src]

type Output = OrderedFloat<<&'a T as Div>::Output>

The resulting type after applying the / operator.

fn div(self, other: Self) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T> Div<&'a T> for OrderedFloat<T> where
    T: Div<&'a T>, 
[src]

type Output = OrderedFloat<<T as Div<&'a T>>::Output>

The resulting type after applying the / operator.

fn div(self, other: &'a T) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T> Div<&'a T> for &'a OrderedFloat<T> where
    &'a T: Div
[src]

type Output = OrderedFloat<<&'a T as Div>::Output>

The resulting type after applying the / operator.

fn div(self, other: &'a T) -> Self::Output[src]

Performs the / operation. Read more

impl<T: Div> Div<OrderedFloat<T>> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the / operator.

fn div(self, other: Self) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T> Div<OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Div<T>, 
[src]

type Output = OrderedFloat<<&'a T as Div<T>>::Output>

The resulting type after applying the / operator.

fn div(self, other: OrderedFloat<T>) -> Self::Output[src]

Performs the / operation. Read more

impl<T: Div> Div<T> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the / operator.

fn div(self, other: T) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T> Div<T> for &'a OrderedFloat<T> where
    &'a T: Div<T>, 
[src]

type Output = OrderedFloat<<&'a T as Div<T>>::Output>

The resulting type after applying the / operator.

fn div(self, other: T) -> Self::Output[src]

Performs the / operation. Read more

impl<'a, T: DivAssign<&'a T>> DivAssign<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn div_assign(&mut self, other: &'a Self)[src]

Performs the /= operation. Read more

impl<'a, T: DivAssign<&'a T>> DivAssign<&'a T> for OrderedFloat<T>[src]

fn div_assign(&mut self, other: &'a T)[src]

Performs the /= operation. Read more

impl<T: DivAssign> DivAssign<OrderedFloat<T>> for OrderedFloat<T>[src]

fn div_assign(&mut self, other: Self)[src]

Performs the /= operation. Read more

impl<T: DivAssign> DivAssign<T> for OrderedFloat<T>[src]

fn div_assign(&mut self, other: T)[src]

Performs the /= operation. Read more

impl<T: Float> Float for OrderedFloat<T>[src]

fn nan() -> Self[src]

Returns the NaN value. Read more

fn infinity() -> Self[src]

Returns the infinite value. Read more

fn neg_infinity() -> Self[src]

Returns the negative infinite value. Read more

fn neg_zero() -> Self[src]

Returns -0.0. Read more

fn min_value() -> Self[src]

Returns the smallest finite value that this type can represent. Read more

fn min_positive_value() -> Self[src]

Returns the smallest positive, normalized value that this type can represent. Read more

fn max_value() -> Self[src]

Returns the largest finite value that this type can represent. Read more

fn is_nan(self) -> bool[src]

Returns true if this value is NaN and false otherwise. Read more

fn is_infinite(self) -> bool[src]

Returns true if this value is positive infinity or negative infinity and false otherwise. Read more

fn is_finite(self) -> bool[src]

Returns true if this number is neither infinite nor NaN. Read more

fn is_normal(self) -> bool[src]

Returns true if the number is neither zero, infinite, subnormal, or NaN. Read more

fn classify(self) -> FpCategory[src]

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more

fn floor(self) -> Self[src]

Returns the largest integer less than or equal to a number. Read more

fn ceil(self) -> Self[src]

Returns the smallest integer greater than or equal to a number. Read more

fn round(self) -> Self[src]

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more

fn trunc(self) -> Self[src]

Return the integer part of a number. Read more

fn fract(self) -> Self[src]

Returns the fractional part of a number. Read more

fn abs(self) -> Self[src]

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more

fn signum(self) -> Self[src]

Returns a number that represents the sign of self. Read more

fn is_sign_positive(self) -> bool[src]

Returns true if self is positive, including +0.0, Float::infinity(), and since Rust 1.20 also Float::nan(). Read more

fn is_sign_negative(self) -> bool[src]

Returns true if self is negative, including -0.0, Float::neg_infinity(), and since Rust 1.20 also -Float::nan(). Read more

fn mul_add(self, a: Self, b: Self) -> Self[src]

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more

fn recip(self) -> Self[src]

Take the reciprocal (inverse) of a number, 1/x. Read more

fn powi(self, n: i32) -> Self[src]

Raise a number to an integer power. Read more

fn powf(self, n: Self) -> Self[src]

Raise a number to a floating point power. Read more

fn sqrt(self) -> Self[src]

Take the square root of a number. Read more

fn exp(self) -> Self[src]

Returns e^(self), (the exponential function). Read more

fn exp2(self) -> Self[src]

Returns 2^(self). Read more

fn ln(self) -> Self[src]

Returns the natural logarithm of the number. Read more

fn log(self, base: Self) -> Self[src]

Returns the logarithm of the number with respect to an arbitrary base. Read more

fn log2(self) -> Self[src]

Returns the base 2 logarithm of the number. Read more

fn log10(self) -> Self[src]

Returns the base 10 logarithm of the number. Read more

fn max(self, other: Self) -> Self[src]

Returns the maximum of the two numbers. Read more

fn min(self, other: Self) -> Self[src]

Returns the minimum of the two numbers. Read more

fn abs_sub(self, other: Self) -> Self[src]

The positive difference of two numbers. Read more

fn cbrt(self) -> Self[src]

Take the cubic root of a number. Read more

fn hypot(self, other: Self) -> Self[src]

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more

fn sin(self) -> Self[src]

Computes the sine of a number (in radians). Read more

fn cos(self) -> Self[src]

Computes the cosine of a number (in radians). Read more

fn tan(self) -> Self[src]

Computes the tangent of a number (in radians). Read more

fn asin(self) -> Self[src]

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more

fn acos(self) -> Self[src]

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more

fn atan(self) -> Self[src]

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more

fn atan2(self, other: Self) -> Self[src]

Computes the four quadrant arctangent of self (y) and other (x). Read more

fn sin_cos(self) -> (Self, Self)[src]

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more

fn exp_m1(self) -> Self[src]

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more

fn ln_1p(self) -> Self[src]

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more

fn sinh(self) -> Self[src]

Hyperbolic sine function. Read more

fn cosh(self) -> Self[src]

Hyperbolic cosine function. Read more

fn tanh(self) -> Self[src]

Hyperbolic tangent function. Read more

fn asinh(self) -> Self[src]

Inverse hyperbolic sine function. Read more

fn acosh(self) -> Self[src]

Inverse hyperbolic cosine function. Read more

fn atanh(self) -> Self[src]

Inverse hyperbolic tangent function. Read more

fn integer_decode(self) -> (u64, i16, i8)[src]

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more

fn epsilon() -> Self[src]

Returns epsilon, a small positive value. Read more

fn to_degrees(self) -> Self[src]

Converts radians to degrees. Read more

fn to_radians(self) -> Self[src]

Converts degrees to radians. Read more

impl<T: Float> FloatCore for OrderedFloat<T>[src]

fn nan() -> Self[src]

Returns NaN. Read more

fn infinity() -> Self[src]

Returns positive infinity. Read more

fn neg_infinity() -> Self[src]

Returns negative infinity. Read more

fn neg_zero() -> Self[src]

Returns -0.0. Read more

fn min_value() -> Self[src]

Returns the smallest finite value that this type can represent. Read more

fn min_positive_value() -> Self[src]

Returns the smallest positive, normalized value that this type can represent. Read more

fn max_value() -> Self[src]

Returns the largest finite value that this type can represent. Read more

fn is_nan(self) -> bool[src]

Returns true if the number is NaN. Read more

fn is_infinite(self) -> bool[src]

Returns true if the number is infinite. Read more

fn is_finite(self) -> bool[src]

Returns true if the number is neither infinite or NaN. Read more

fn is_normal(self) -> bool[src]

Returns true if the number is neither zero, infinite, subnormal or NaN. Read more

fn classify(self) -> FpCategory[src]

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more

fn floor(self) -> Self[src]

Returns the largest integer less than or equal to a number. Read more

fn ceil(self) -> Self[src]

Returns the smallest integer greater than or equal to a number. Read more

fn round(self) -> Self[src]

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more

fn trunc(self) -> Self[src]

Return the integer part of a number. Read more

fn fract(self) -> Self[src]

Returns the fractional part of a number. Read more

fn abs(self) -> Self[src]

Computes the absolute value of self. Returns FloatCore::nan() if the number is FloatCore::nan(). Read more

fn signum(self) -> Self[src]

Returns a number that represents the sign of self. Read more

fn is_sign_positive(self) -> bool[src]

Returns true if self is positive, including +0.0 and FloatCore::infinity(), and since Rust 1.20 also FloatCore::nan(). Read more

fn is_sign_negative(self) -> bool[src]

Returns true if self is negative, including -0.0 and FloatCore::neg_infinity(), and since Rust 1.20 also -FloatCore::nan(). Read more

fn recip(self) -> Self[src]

Returns the reciprocal (multiplicative inverse) of the number. Read more

fn powi(self, n: i32) -> Self[src]

Raise a number to an integer power. Read more

fn integer_decode(self) -> (u64, i16, i8)[src]

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more

fn epsilon() -> Self[src]

Returns epsilon, a small positive value. Read more

fn to_degrees(self) -> Self[src]

Converts to degrees, assuming the number is in radians. Read more

fn to_radians(self) -> Self[src]

Converts to radians, assuming the number is in degrees. Read more

fn min(self, other: Self) -> Self[src]

Returns the minimum of the two numbers. Read more

fn max(self, other: Self) -> Self[src]

Returns the maximum of the two numbers. Read more

impl<'a, T: Float> From<&'a T> for &'a OrderedFloat<T>[src]

fn from(t: &'a T) -> &'a OrderedFloat<T>[src]

Performs the conversion.

impl<'a, T: Float> From<&'a mut T> for &'a mut OrderedFloat<T>[src]

fn from(t: &'a mut T) -> &'a mut OrderedFloat<T>[src]

Performs the conversion.

impl<T: Float> From<T> for OrderedFloat<T>[src]

fn from(val: T) -> Self[src]

Performs the conversion.

impl<T: FromPrimitive> FromPrimitive for OrderedFloat<T>[src]

fn from_i64(n: i64) -> Option<Self>[src]

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

fn from_u64(n: u64) -> Option<Self>[src]

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

fn from_isize(n: isize) -> Option<Self>[src]

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

fn from_i8(n: i8) -> Option<Self>[src]

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

fn from_i16(n: i16) -> Option<Self>[src]

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

fn from_i32(n: i32) -> Option<Self>[src]

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

fn from_usize(n: usize) -> Option<Self>[src]

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

fn from_u8(n: u8) -> Option<Self>[src]

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

fn from_u16(n: u16) -> Option<Self>[src]

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

fn from_u32(n: u32) -> Option<Self>[src]

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

fn from_f32(n: f32) -> Option<Self>[src]

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

fn from_f64(n: f64) -> Option<Self>[src]

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

fn from_i128(n: i128) -> Option<Self>[src]

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

fn from_u128(n: u128) -> Option<Self>[src]

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more

impl<T: FromStr> FromStr for OrderedFloat<T>[src]

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Convert a &str to OrderedFloat. Returns an error if the string fails to parse.

use ordered_float::OrderedFloat;

assert!("-10".parse::<OrderedFloat<f32>>().is_ok());
assert!("abc".parse::<OrderedFloat<f32>>().is_err());
assert!("NaN".parse::<OrderedFloat<f32>>().is_ok());

type Err = T::Err

The associated error which can be returned from parsing.

impl<T: Float> Hash for OrderedFloat<T>[src]

fn hash<H: Hasher>(&self, state: &mut H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl<'a, T> Mul<&'a OrderedFloat<T>> for OrderedFloat<T> where
    T: Mul<&'a T>, 
[src]

type Output = OrderedFloat<<T as Mul<&'a T>>::Output>

The resulting type after applying the * operator.

fn mul(self, other: &'a Self) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T> Mul<&'a OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Mul
[src]

type Output = OrderedFloat<<&'a T as Mul>::Output>

The resulting type after applying the * operator.

fn mul(self, other: Self) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T> Mul<&'a T> for OrderedFloat<T> where
    T: Mul<&'a T>, 
[src]

type Output = OrderedFloat<<T as Mul<&'a T>>::Output>

The resulting type after applying the * operator.

fn mul(self, other: &'a T) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T> Mul<&'a T> for &'a OrderedFloat<T> where
    &'a T: Mul
[src]

type Output = OrderedFloat<<&'a T as Mul>::Output>

The resulting type after applying the * operator.

fn mul(self, other: &'a T) -> Self::Output[src]

Performs the * operation. Read more

impl<T: Mul> Mul<OrderedFloat<T>> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the * operator.

fn mul(self, other: Self) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T> Mul<OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Mul<T>, 
[src]

type Output = OrderedFloat<<&'a T as Mul<T>>::Output>

The resulting type after applying the * operator.

fn mul(self, other: OrderedFloat<T>) -> Self::Output[src]

Performs the * operation. Read more

impl<T: Mul> Mul<T> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the * operator.

fn mul(self, other: T) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T> Mul<T> for &'a OrderedFloat<T> where
    &'a T: Mul<T>, 
[src]

type Output = OrderedFloat<<&'a T as Mul<T>>::Output>

The resulting type after applying the * operator.

fn mul(self, other: T) -> Self::Output[src]

Performs the * operation. Read more

impl<'a, T: MulAssign<&'a T>> MulAssign<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn mul_assign(&mut self, other: &'a Self)[src]

Performs the *= operation. Read more

impl<'a, T: MulAssign<&'a T>> MulAssign<&'a T> for OrderedFloat<T>[src]

fn mul_assign(&mut self, other: &'a T)[src]

Performs the *= operation. Read more

impl<T: MulAssign> MulAssign<OrderedFloat<T>> for OrderedFloat<T>[src]

fn mul_assign(&mut self, other: Self)[src]

Performs the *= operation. Read more

impl<T: MulAssign> MulAssign<T> for OrderedFloat<T>[src]

fn mul_assign(&mut self, other: T)[src]

Performs the *= operation. Read more

impl<T: Neg> Neg for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl<'a, T> Neg for &'a OrderedFloat<T> where
    &'a T: Neg
[src]

type Output = OrderedFloat<<&'a T as Neg>::Output>

The resulting type after applying the - operator.

fn neg(self) -> Self::Output[src]

Performs the unary - operation. Read more

impl<T: Float + Num> Num for OrderedFloat<T>[src]

type FromStrRadixErr = T::FromStrRadixErr

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>[src]

Convert from a string and radix (typically 2..=36). Read more

impl<T: NumCast> NumCast for OrderedFloat<T>[src]

fn from<F: ToPrimitive>(n: F) -> Option<Self>[src]

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

impl<T: One> One for OrderedFloat<T>[src]

fn one() -> Self[src]

Returns the multiplicative identity element of Self, 1. Read more

fn set_one(&mut self)[src]

Sets self to the multiplicative identity element of Self, 1.

fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

Returns true if self is equal to the multiplicative identity. Read more

impl<T: Float> Ord for OrderedFloat<T>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<T: Float> PartialEq<OrderedFloat<T>> for OrderedFloat<T>[src]

fn eq(&self, other: &OrderedFloat<T>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<T: Float> PartialEq<T> for OrderedFloat<T>[src]

fn eq(&self, other: &T) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<T: Float> PartialOrd<OrderedFloat<T>> for OrderedFloat<T>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'a, T: Float + Product + 'a> Product<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn product<I: Iterator<Item = &'a OrderedFloat<T>>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl<T: Float + Product> Product<OrderedFloat<T>> for OrderedFloat<T>[src]

fn product<I: Iterator<Item = OrderedFloat<T>>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl<'a, T> Rem<&'a OrderedFloat<T>> for OrderedFloat<T> where
    T: Rem<&'a T>, 
[src]

type Output = OrderedFloat<<T as Rem<&'a T>>::Output>

The resulting type after applying the % operator.

fn rem(self, other: &'a Self) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T> Rem<&'a OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Rem
[src]

type Output = OrderedFloat<<&'a T as Rem>::Output>

The resulting type after applying the % operator.

fn rem(self, other: Self) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T> Rem<&'a T> for OrderedFloat<T> where
    T: Rem<&'a T>, 
[src]

type Output = OrderedFloat<<T as Rem<&'a T>>::Output>

The resulting type after applying the % operator.

fn rem(self, other: &'a T) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T> Rem<&'a T> for &'a OrderedFloat<T> where
    &'a T: Rem
[src]

type Output = OrderedFloat<<&'a T as Rem>::Output>

The resulting type after applying the % operator.

fn rem(self, other: &'a T) -> Self::Output[src]

Performs the % operation. Read more

impl<T: Rem> Rem<OrderedFloat<T>> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the % operator.

fn rem(self, other: Self) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T> Rem<OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Rem<T>, 
[src]

type Output = OrderedFloat<<&'a T as Rem<T>>::Output>

The resulting type after applying the % operator.

fn rem(self, other: OrderedFloat<T>) -> Self::Output[src]

Performs the % operation. Read more

impl<T: Rem> Rem<T> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the % operator.

fn rem(self, other: T) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T> Rem<T> for &'a OrderedFloat<T> where
    &'a T: Rem<T>, 
[src]

type Output = OrderedFloat<<&'a T as Rem<T>>::Output>

The resulting type after applying the % operator.

fn rem(self, other: T) -> Self::Output[src]

Performs the % operation. Read more

impl<'a, T: RemAssign<&'a T>> RemAssign<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn rem_assign(&mut self, other: &'a Self)[src]

Performs the %= operation. Read more

impl<'a, T: RemAssign<&'a T>> RemAssign<&'a T> for OrderedFloat<T>[src]

fn rem_assign(&mut self, other: &'a T)[src]

Performs the %= operation. Read more

impl<T: RemAssign> RemAssign<OrderedFloat<T>> for OrderedFloat<T>[src]

fn rem_assign(&mut self, other: Self)[src]

Performs the %= operation. Read more

impl<T: RemAssign> RemAssign<T> for OrderedFloat<T>[src]

fn rem_assign(&mut self, other: T)[src]

Performs the %= operation. Read more

impl<'a, T> Sub<&'a OrderedFloat<T>> for OrderedFloat<T> where
    T: Sub<&'a T>, 
[src]

type Output = OrderedFloat<<T as Sub<&'a T>>::Output>

The resulting type after applying the - operator.

fn sub(self, other: &'a Self) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T> Sub<&'a OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Sub
[src]

type Output = OrderedFloat<<&'a T as Sub>::Output>

The resulting type after applying the - operator.

fn sub(self, other: Self) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T> Sub<&'a T> for OrderedFloat<T> where
    T: Sub<&'a T>, 
[src]

type Output = OrderedFloat<<T as Sub<&'a T>>::Output>

The resulting type after applying the - operator.

fn sub(self, other: &'a T) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T> Sub<&'a T> for &'a OrderedFloat<T> where
    &'a T: Sub
[src]

type Output = OrderedFloat<<&'a T as Sub>::Output>

The resulting type after applying the - operator.

fn sub(self, other: &'a T) -> Self::Output[src]

Performs the - operation. Read more

impl<T: Sub> Sub<OrderedFloat<T>> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the - operator.

fn sub(self, other: Self) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T> Sub<OrderedFloat<T>> for &'a OrderedFloat<T> where
    &'a T: Sub<T>, 
[src]

type Output = OrderedFloat<<&'a T as Sub<T>>::Output>

The resulting type after applying the - operator.

fn sub(self, other: OrderedFloat<T>) -> Self::Output[src]

Performs the - operation. Read more

impl<T: Sub> Sub<T> for OrderedFloat<T>[src]

type Output = OrderedFloat<T::Output>

The resulting type after applying the - operator.

fn sub(self, other: T) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T> Sub<T> for &'a OrderedFloat<T> where
    &'a T: Sub<T>, 
[src]

type Output = OrderedFloat<<&'a T as Sub<T>>::Output>

The resulting type after applying the - operator.

fn sub(self, other: T) -> Self::Output[src]

Performs the - operation. Read more

impl<'a, T: SubAssign<&'a T>> SubAssign<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn sub_assign(&mut self, other: &'a Self)[src]

Performs the -= operation. Read more

impl<'a, T: SubAssign<&'a T>> SubAssign<&'a T> for OrderedFloat<T>[src]

fn sub_assign(&mut self, other: &'a T)[src]

Performs the -= operation. Read more

impl<T: SubAssign> SubAssign<OrderedFloat<T>> for OrderedFloat<T>[src]

fn sub_assign(&mut self, other: Self)[src]

Performs the -= operation. Read more

impl<T: SubAssign> SubAssign<T> for OrderedFloat<T>[src]

fn sub_assign(&mut self, other: T)[src]

Performs the -= operation. Read more

impl<'a, T: Float + Sum + 'a> Sum<&'a OrderedFloat<T>> for OrderedFloat<T>[src]

fn sum<I: Iterator<Item = &'a OrderedFloat<T>>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl<T: Float + Sum> Sum<OrderedFloat<T>> for OrderedFloat<T>[src]

Adds a float directly.

fn sum<I: Iterator<Item = OrderedFloat<T>>>(iter: I) -> Self[src]

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

impl<T: ToPrimitive> ToPrimitive for OrderedFloat<T>[src]

fn to_i64(&self) -> Option<i64>[src]

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned. Read more

fn to_u64(&self) -> Option<u64>[src]

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned. Read more

fn to_isize(&self) -> Option<isize>[src]

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned. Read more

fn to_i8(&self) -> Option<i8>[src]

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned. Read more

fn to_i16(&self) -> Option<i16>[src]

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned. Read more

fn to_i32(&self) -> Option<i32>[src]

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned. Read more

fn to_usize(&self) -> Option<usize>[src]

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned. Read more

fn to_u8(&self) -> Option<u8>[src]

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned. Read more

fn to_u16(&self) -> Option<u16>[src]

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned. Read more

fn to_u32(&self) -> Option<u32>[src]

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned. Read more

fn to_f32(&self) -> Option<f32>[src]

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

fn to_f64(&self) -> Option<f64>[src]

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

fn to_i128(&self) -> Option<i128>[src]

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more

fn to_u128(&self) -> Option<u128>[src]

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more

impl<T: Zero> Zero for OrderedFloat<T>[src]

fn zero() -> Self[src]

Returns the additive identity element of Self, 0. Read more

fn is_zero(&self) -> bool[src]

Returns true if self is equal to the additive identity.

fn set_zero(&mut self)[src]

Sets self to the additive identity element of Self, 0.

impl<T: Copy> Copy for OrderedFloat<T>[src]

impl<T: Float> Eq for OrderedFloat<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for OrderedFloat<T> where
    T: RefUnwindSafe

impl<T> Send for OrderedFloat<T> where
    T: Send

impl<T> Sync for OrderedFloat<T> where
    T: Sync

impl<T> Unpin for OrderedFloat<T> where
    T: Unpin

impl<T> UnwindSafe for OrderedFloat<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Real for T where
    T: Float
[src]

pub fn min_value() -> T[src]

Returns the smallest finite value that this type can represent. Read more

pub fn min_positive_value() -> T[src]

Returns the smallest positive, normalized value that this type can represent. Read more

pub fn epsilon() -> T[src]

Returns epsilon, a small positive value. Read more

pub fn max_value() -> T[src]

Returns the largest finite value that this type can represent. Read more

pub fn floor(self) -> T[src]

Returns the largest integer less than or equal to a number. Read more

pub fn ceil(self) -> T[src]

Returns the smallest integer greater than or equal to a number. Read more

pub fn round(self) -> T[src]

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more

pub fn trunc(self) -> T[src]

Return the integer part of a number. Read more

pub fn fract(self) -> T[src]

Returns the fractional part of a number. Read more

pub fn abs(self) -> T[src]

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more

pub fn signum(self) -> T[src]

Returns a number that represents the sign of self. Read more

pub fn is_sign_positive(self) -> bool[src]

Returns true if self is positive, including +0.0, Float::infinity(), and with newer versions of Rust f64::NAN. Read more

pub fn is_sign_negative(self) -> bool[src]

Returns true if self is negative, including -0.0, Float::neg_infinity(), and with newer versions of Rust -f64::NAN. Read more

pub fn mul_add(self, a: T, b: T) -> T[src]

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more

pub fn recip(self) -> T[src]

Take the reciprocal (inverse) of a number, 1/x. Read more

pub fn powi(self, n: i32) -> T[src]

Raise a number to an integer power. Read more

pub fn powf(self, n: T) -> T[src]

Raise a number to a real number power. Read more

pub fn sqrt(self) -> T[src]

Take the square root of a number. Read more

pub fn exp(self) -> T[src]

Returns e^(self), (the exponential function). Read more

pub fn exp2(self) -> T[src]

Returns 2^(self). Read more

pub fn ln(self) -> T[src]

Returns the natural logarithm of the number. Read more

pub fn log(self, base: T) -> T[src]

Returns the logarithm of the number with respect to an arbitrary base. Read more

pub fn log2(self) -> T[src]

Returns the base 2 logarithm of the number. Read more

pub fn log10(self) -> T[src]

Returns the base 10 logarithm of the number. Read more

pub fn to_degrees(self) -> T[src]

Converts radians to degrees. Read more

pub fn to_radians(self) -> T[src]

Converts degrees to radians. Read more

pub fn max(self, other: T) -> T[src]

Returns the maximum of the two numbers. Read more

pub fn min(self, other: T) -> T[src]

Returns the minimum of the two numbers. Read more

pub fn abs_sub(self, other: T) -> T[src]

The positive difference of two numbers. Read more

pub fn cbrt(self) -> T[src]

Take the cubic root of a number. Read more

pub fn hypot(self, other: T) -> T[src]

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more

pub fn sin(self) -> T[src]

Computes the sine of a number (in radians). Read more

pub fn cos(self) -> T[src]

Computes the cosine of a number (in radians). Read more

pub fn tan(self) -> T[src]

Computes the tangent of a number (in radians). Read more

pub fn asin(self) -> T[src]

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more

pub fn acos(self) -> T[src]

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more

pub fn atan(self) -> T[src]

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more

pub fn atan2(self, other: T) -> T[src]

Computes the four quadrant arctangent of self (y) and other (x). Read more

pub fn sin_cos(self) -> (T, T)[src]

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more

pub fn exp_m1(self) -> T[src]

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more

pub fn ln_1p(self) -> T[src]

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more

pub fn sinh(self) -> T[src]

Hyperbolic sine function. Read more

pub fn cosh(self) -> T[src]

Hyperbolic cosine function. Read more

pub fn tanh(self) -> T[src]

Hyperbolic tangent function. Read more

pub fn asinh(self) -> T[src]

Inverse hyperbolic sine function. Read more

pub fn acosh(self) -> T[src]

Inverse hyperbolic cosine function. Read more

pub fn atanh(self) -> T[src]

Inverse hyperbolic tangent function. Read more

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> NumAssign for T where
    T: Num + NumAssignOps<T>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T> NumAssignRef for T where
    T: NumAssign + for<'r> NumAssignOps<&'r T>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> NumRef for T where
    T: Num + for<'r> NumOps<&'r T, T>, 
[src]

impl<T, Base> RefNum<Base> for T where
    T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>, 
[src]