Struct num::rational::Ratio
[−]
[src]
pub struct Ratio<T> { // some fields omitted }
Represents the ratio between 2 numbers.
Methods
impl Ratio<BigInt>
fn from_float<T>(f: T) -> Option<Ratio<BigInt>> where T: Float
Converts a float into a rational number.
impl<T> Ratio<T> where T: Clone + Integer + PrimInt
impl<T> Ratio<T> where T: Clone + Integer
fn from_integer(t: T) -> Ratio<T>
Creates a ratio representing the integer t
.
fn new_raw(numer: T, denom: T) -> Ratio<T>
Creates a ratio without checking for denom == 0
or reducing.
fn new(numer: T, denom: T) -> Ratio<T>
Create a new Ratio. Fails if denom == 0
.
fn to_integer(&self) -> T
Converts to an integer.
fn numer(&'a self) -> &'a T
Gets an immutable reference to the numerator.
fn denom(&'a self) -> &'a T
Gets an immutable reference to the denominator.
fn is_integer(&self) -> bool
Returns true if the rational number is an integer (denominator is 1).
fn reduced(&self) -> Ratio<T>
Returns a reduce
d copy of self.
fn recip(&self) -> Ratio<T>
Returns the reciprocal.
fn floor(&self) -> Ratio<T>
Rounds towards minus infinity.
fn ceil(&self) -> Ratio<T>
Rounds towards plus infinity.
fn round(&self) -> Ratio<T>
Rounds to the nearest integer. Rounds half-way cases away from zero.
fn trunc(&self) -> Ratio<T>
Rounds towards zero.
fn fract(&self) -> Ratio<T>
Returns the fractional part of a number.
Trait Implementations
impl<T> FromStr for Ratio<T> where T: Clone + FromStr + Integer
type Err = ParseRatioError
fn from_str(s: &str) -> Result<Ratio<T>, ParseRatioError>
Parses numer/denom
or just numer
.
impl<T> Display for Ratio<T> where T: Display + Eq + One
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Renders as numer/denom
. If denom=1, renders as numer.
impl<T> Signed for Ratio<T> where T: Clone + Integer + Signed
fn abs(&self) -> Ratio<T>
fn abs_sub(&self, other: &Ratio<T>) -> Ratio<T>
fn signum(&self) -> Ratio<T>
fn is_positive(&self) -> bool
fn is_negative(&self) -> bool
impl<T> Num for Ratio<T> where T: Clone + Integer
type FromStrRadixErr = ParseRatioError
fn from_str_radix(s: &str, radix: u32) -> Result<Ratio<T>, ParseRatioError>
Parses numer/denom
where the numbers are in base radix
.