Struct noisy_float::NoisyFloat [] [src]

#[repr(C)]
pub struct NoisyFloat<F: Float, C: FloatChecker<F>> { /* fields omitted */ }

A floating point number with a restricted set of legal values.

Typical users will not need to access this struct directly, but can instead use the type aliases found in the module noisy_float::types. However, this struct together with a FloatChecker implementation can be used to define custom behavior.

The underlying float type is F, usually f32 or f64. Valid values for the float are determined by the float checker C. If an invalid value would ever be returned from a method on this type, the method will panic instead, using either assert! or debug_assert! as defined by the float checker. The exception to this rule is for methods that return an Option containing a NoisyFloat, in which case the result would be None if the value is invalid.

Methods

impl<F: Float, C: FloatChecker<F>> NoisyFloat<F, C>
[src]

[src]

Constructs a NoisyFloat with the given value.

Uses the FloatChecker to assert that the value is valid.

[src]

Tries to construct a NoisyFloat with the given value.

Returns None if the value is invalid.

[src]

Constructs a NoisyFloat with the given f32 value.

May panic not only by the FloatChecker but also by unwrapping the result of a NumCast invocation for type F, although the later should not occur in normal situations.

[src]

Constructs a NoisyFloat with the given f64 value.

May panic not only by the FloatChecker but also by unwrapping the result of a NumCast invocation for type F, although the later should not occur in normal situations.

[src]

Returns the underlying float value.

Trait Implementations

impl<F: Float, C: FloatChecker<F>> Clone for NoisyFloat<F, C>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<F: Float, C: FloatChecker<F>> Copy for NoisyFloat<F, C>
[src]

impl<F: Float, C: FloatChecker<F>> PartialEq<F> for NoisyFloat<F, C>
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<F: Float, C: FloatChecker<F>> PartialEq for NoisyFloat<F, C>
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<F: Float, C: FloatChecker<F>> Eq for NoisyFloat<F, C>
[src]

impl<F: Float, C: FloatChecker<F>> PartialOrd<F> for NoisyFloat<F, C>
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl<F: Float, C: FloatChecker<F>> PartialOrd for NoisyFloat<F, C>
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl<F: Float, C: FloatChecker<F>> Ord for NoisyFloat<F, C>
[src]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl<F: Float, C: FloatChecker<F>> Add<F> for NoisyFloat<F, C>
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<F: Float, C: FloatChecker<F>> Add for NoisyFloat<F, C>
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<F: Float, C: FloatChecker<F>> Sub<F> for NoisyFloat<F, C>
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<F: Float, C: FloatChecker<F>> Sub for NoisyFloat<F, C>
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<F: Float, C: FloatChecker<F>> Mul<F> for NoisyFloat<F, C>
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<F: Float, C: FloatChecker<F>> Mul for NoisyFloat<F, C>
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<F: Float, C: FloatChecker<F>> Div<F> for NoisyFloat<F, C>
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<F: Float, C: FloatChecker<F>> Div for NoisyFloat<F, C>
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<F: Float, C: FloatChecker<F>> Rem<F> for NoisyFloat<F, C>
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl<F: Float, C: FloatChecker<F>> Rem for NoisyFloat<F, C>
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl<F: Float + AddAssign, C: FloatChecker<F>> AddAssign<F> for NoisyFloat<F, C>
[src]

[src]

Performs the += operation.

impl<F: Float + AddAssign, C: FloatChecker<F>> AddAssign for NoisyFloat<F, C>
[src]

[src]

Performs the += operation.

impl<F: Float + SubAssign, C: FloatChecker<F>> SubAssign<F> for NoisyFloat<F, C>
[src]

[src]

Performs the -= operation.

impl<F: Float + SubAssign, C: FloatChecker<F>> SubAssign for NoisyFloat<F, C>
[src]

[src]

Performs the -= operation.

impl<F: Float + MulAssign, C: FloatChecker<F>> MulAssign<F> for NoisyFloat<F, C>
[src]

[src]

Performs the *= operation.

impl<F: Float + MulAssign, C: FloatChecker<F>> MulAssign for NoisyFloat<F, C>
[src]

[src]

Performs the *= operation.

impl<F: Float + DivAssign, C: FloatChecker<F>> DivAssign<F> for NoisyFloat<F, C>
[src]

[src]

Performs the /= operation.

impl<F: Float + DivAssign, C: FloatChecker<F>> DivAssign for NoisyFloat<F, C>
[src]

[src]

Performs the /= operation.

impl<F: Float + RemAssign, C: FloatChecker<F>> RemAssign<F> for NoisyFloat<F, C>
[src]

[src]

Performs the %= operation.

impl<F: Float + RemAssign, C: FloatChecker<F>> RemAssign for NoisyFloat<F, C>
[src]

[src]

Performs the %= operation.

impl<F: Float, C: FloatChecker<F>> Neg for NoisyFloat<F, C>
[src]

The resulting type after applying the - operator.

[src]

Performs the unary - operation.

impl<F: Float, C: FloatChecker<F>> Zero for NoisyFloat<F, C>
[src]

[src]

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

[src]

Returns true if self is equal to the additive identity.

impl<F: Float, C: FloatChecker<F>> One for NoisyFloat<F, C>
[src]

[src]

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

impl<F: Float, C: FloatChecker<F>> Num for NoisyFloat<F, C>
[src]

[src]

Convert from a string and radix <= 36. Read more

impl<F: Float, C: FloatChecker<F>> ToPrimitive for NoisyFloat<F, C>
[src]

[src]

Converts the value of self to an i64.

[src]

Converts the value of self to an u64.

[src]

Converts the value of self to an isize.

[src]

Converts the value of self to an i8.

[src]

Converts the value of self to an i16.

[src]

Converts the value of self to an i32.

[src]

Converts the value of self to a usize.

[src]

Converts the value of self to an u8.

[src]

Converts the value of self to an u16.

[src]

Converts the value of self to an u32.

[src]

Converts the value of self to an f32.

[src]

Converts the value of self to an f64.

impl<F: Float, C: FloatChecker<F>> NumCast for NoisyFloat<F, C>
[src]

[src]

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. Read more

impl<F: Float, C: FloatChecker<F>> Float for NoisyFloat<F, C>
[src]

[src]

Returns the NaN value. Read more

[src]

Returns the infinite value. Read more

[src]

Returns the negative infinite value. Read more

[src]

Returns -0.0. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[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

[src]

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

[src]

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

[src]

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

[src]

Return the integer part of a number. Read more

[src]

Returns the fractional part of a number. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Fused multiply-add. Computes (self * a) + b with only one rounding error. This produces a more accurate result with better performance than a separate multiplication operation followed by an add. Read more

[src]

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

[src]

Raise a number to an integer power. Read more

[src]

Raise a number to a floating point power. Read more

[src]

Take the square root of a number. Read more

[src]

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

[src]

Returns 2^(self). Read more

[src]

Returns the natural logarithm of the number. Read more

[src]

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

[src]

Returns the base 2 logarithm of the number. Read more

[src]

Returns the base 10 logarithm of the number. Read more

[src]

Returns the maximum of the two numbers. Read more

[src]

Returns the minimum of the two numbers. Read more

[src]

The positive difference of two numbers. Read more

[src]

Take the cubic root of a number. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[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

[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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Hyperbolic sine function. Read more

[src]

Hyperbolic cosine function. Read more

[src]

Hyperbolic tangent function. Read more

[src]

Inverse hyperbolic sine function. Read more

[src]

Inverse hyperbolic cosine function. Read more

[src]

Inverse hyperbolic tangent function. Read more

[src]

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. The floating point encoding is documented in the [Reference][floating-point]. Read more

[src]

Converts radians to degrees. Read more

[src]

Converts degrees to radians. Read more

[src]

Returns epsilon, a small positive value. Read more

impl<F: Float + FloatConst, C: FloatChecker<F>> FloatConst for NoisyFloat<F, C>
[src]

[src]

Return Euler’s number.

[src]

Return 1.0 / π.

[src]

Return 1.0 / sqrt(2.0).

[src]

Return 2.0 / π.

[src]

Return 2.0 / sqrt(π).

[src]

Return π / 2.0.

[src]

Return π / 3.0.

[src]

Return π / 4.0.

[src]

Return π / 6.0.

[src]

Return π / 8.0.

[src]

Return ln(10.0).

[src]

Return ln(2.0).

[src]

Return log10(e).

[src]

Return log2(e).

[src]

Return Archimedes’ constant.

[src]

Return sqrt(2.0).

impl<F: Float, C: FloatChecker<F>> Sum for NoisyFloat<F, C>
[src]

[src]

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

impl<F: Float, C: FloatChecker<F>> Product for NoisyFloat<F, C>
[src]

[src]

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

impl<F: Float> From<NoisyFloat<F, FiniteChecker>> for NoisyFloat<F, NumChecker>
[src]

[src]

Performs the conversion.

impl<F: Float + Default, C: FloatChecker<F>> Default for NoisyFloat<F, C>
[src]

[src]

Returns the "default value" for a type. Read more

impl<F: Float + Debug, C: FloatChecker<F>> Debug for NoisyFloat<F, C>
[src]

[src]

Formats the value using the given formatter.

impl<F: Float + Display, C: FloatChecker<F>> Display for NoisyFloat<F, C>
[src]

[src]

Formats the value using the given formatter. Read more

impl<F: Float + LowerExp, C: FloatChecker<F>> LowerExp for NoisyFloat<F, C>
[src]

[src]

Formats the value using the given formatter.

impl<F: Float + UpperExp, C: FloatChecker<F>> UpperExp for NoisyFloat<F, C>
[src]

[src]

Formats the value using the given formatter.