[][src]Struct floating_bar::r32

pub struct r32(_);

The 32-bit floating bar type.

Methods

impl r32[src]

pub fn numer(self) -> u32[src]

Returns the numerator value for this rational number.

pub fn denom(self) -> u32[src]

Returns the denominator value for this rational number.

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

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

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

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

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

Returns the nearest integer to a number. Round half-way cases away from zero.

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

Returns the integer part of a number.

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

Returns the fractional part of a number.

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

Computes the absolute value of self. Returns NaN if the number is NaN.

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

Returns a number that represents the sign of self.

  • 1 if the number is positive
  • -1 if the number is negative
  • 0 if the number is +0, -0, or NaN

pub fn pow(self, p: i32) -> r32[src]

Raises a number to an integer power.

pub fn checked_pow(self, p: i32) -> Option<r32>[src]

Raises a number to an integer power.

pub fn checked_sqrt(self) -> Option<r32>[src]

Takes the checked square root of a number.

If self is positive and both the numerator and denominator are perfect squares, this returns their square root. Otherwise, returns None.

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

Returns true if this value is NaN and false otherwise.

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

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

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

Returns true if and only if self has a positive sign, including +0.0 (but not NaNs with positive sign bit).

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

Returns true if and only if self has a negative sign, including -0.0 (but not NaNs with negative sign bit).

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

Takes the reciprocal (inverse) of a number, 1/x.

Panics

Panics when trying to set a numerator of zero as denominator.

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

Returns the maximum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

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

Returns the minimum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

pub fn to_bits(self) -> u32[src]

Raw transmutation to u32.

pub fn from_bits(bits: u32) -> r32[src]

Raw transmutation from u32.

pub fn simplify(self) -> r32[src]

Cancels out common factors between the numerator and the denominator.

Trait Implementations

impl Into<f32> for r32[src]

impl Into<f64> for r32[src]

impl Eq for r32[src]

impl Copy for r32[src]

impl PartialOrd<r32> for r32[src]

#[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 Default for r32[src]

impl PartialEq<r32> for r32[src]

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

This method tests for !=.

impl From<u8> for r32[src]

impl From<i8> for r32[src]

impl From<u16> for r32[src]

impl From<i16> for r32[src]

impl From<r32> for r64[src]

impl Clone for r32[src]

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

Performs copy-assignment from source. Read more

impl Display for r32[src]

impl Debug for r32[src]

impl Add<r32> for r32[src]

type Output = r32

The resulting type after applying the + operator.

impl Sub<r32> for r32[src]

type Output = r32

The resulting type after applying the - operator.

impl Mul<r32> for r32[src]

type Output = r32

The resulting type after applying the * operator.

impl Div<r32> for r32[src]

type Output = r32

The resulting type after applying the / operator.

impl Rem<r32> for r32[src]

type Output = r32

The resulting type after applying the % operator.

impl Neg for r32[src]

type Output = r32

The resulting type after applying the - operator.

impl Hash for r32[src]

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 FromStr for r32[src]

type Err = ParseRatioErr

The associated error which can be returned from parsing.

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

Converts a string in base 10 to a rational.

This function accepts strings such as

  • '157/50'
  • '-157/50'
  • '25', or equivalently, '25/1'
  • 'NaN'

Leading and trailing whitespace represent an error.

Return value

Err(ParseRatioError) if the string did not represent a valid number. Otherwise, Ok(n) where n is the floating-bar number represented by src.

Auto Trait Implementations

impl Send for r32

impl Sync for r32

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.