pub type Rational64 = Ratio<i64>;
Expand description
Alias for a Ratio
of 64-bit-sized integers.
Aliased Type§
struct Rational64 { /* private fields */ }
Implementations
Source§impl<T> Ratio<T>
impl<T> Ratio<T>
Sourcepub fn from_integer(t: T) -> Ratio<T>
pub fn from_integer(t: T) -> Ratio<T>
Creates a Ratio
representing the integer t
.
Sourcepub fn to_integer(&self) -> T
pub fn to_integer(&self) -> T
Converts to an integer, rounding towards zero.
Sourcepub fn is_integer(&self) -> bool
pub fn is_integer(&self) -> bool
Returns true if the rational number is an integer (denominator is 1).
Sourcepub fn reduced(&self) -> Ratio<T>
pub fn reduced(&self) -> Ratio<T>
Returns a reduced copy of self.
In general, it is not necessary to use this method, as the only
method of procuring a non-reduced fraction is through new_raw
.
Trait Implementations
Source§impl<'a, T> AddAssign<&'a Ratio<T>> for Ratio<T>
impl<'a, T> AddAssign<&'a Ratio<T>> for Ratio<T>
Source§fn add_assign(&mut self, other: &Ratio<T>)
fn add_assign(&mut self, other: &Ratio<T>)
Performs the
+=
operation. Read moreSource§impl<'a, T> AddAssign<&'a T> for Ratio<T>
impl<'a, T> AddAssign<&'a T> for Ratio<T>
Source§fn add_assign(&mut self, other: &T)
fn add_assign(&mut self, other: &T)
Performs the
+=
operation. Read moreSource§impl<T> AddAssign<T> for Ratio<T>
impl<T> AddAssign<T> for Ratio<T>
Source§fn add_assign(&mut self, other: T)
fn add_assign(&mut self, other: T)
Performs the
+=
operation. Read moreSource§impl<T> AddAssign for Ratio<T>
impl<T> AddAssign for Ratio<T>
Source§fn add_assign(&mut self, other: Ratio<T>)
fn add_assign(&mut self, other: Ratio<T>)
Performs the
+=
operation. Read moreSource§impl<T> CheckedAdd for Ratio<T>
impl<T> CheckedAdd for Ratio<T>
Source§impl<T> CheckedDiv for Ratio<T>
impl<T> CheckedDiv for Ratio<T>
Source§impl<T> CheckedMul for Ratio<T>
impl<T> CheckedMul for Ratio<T>
Source§impl<T> CheckedSub for Ratio<T>
impl<T> CheckedSub for Ratio<T>
Source§impl<'a, T> DivAssign<&'a Ratio<T>> for Ratio<T>
impl<'a, T> DivAssign<&'a Ratio<T>> for Ratio<T>
Source§fn div_assign(&mut self, other: &Ratio<T>)
fn div_assign(&mut self, other: &Ratio<T>)
Performs the
/=
operation. Read moreSource§impl<'a, T> DivAssign<&'a T> for Ratio<T>
impl<'a, T> DivAssign<&'a T> for Ratio<T>
Source§fn div_assign(&mut self, other: &T)
fn div_assign(&mut self, other: &T)
Performs the
/=
operation. Read moreSource§impl<T> DivAssign<T> for Ratio<T>
impl<T> DivAssign<T> for Ratio<T>
Source§fn div_assign(&mut self, other: T)
fn div_assign(&mut self, other: T)
Performs the
/=
operation. Read moreSource§impl<T> DivAssign for Ratio<T>
impl<T> DivAssign for Ratio<T>
Source§fn div_assign(&mut self, other: Ratio<T>)
fn div_assign(&mut self, other: Ratio<T>)
Performs the
/=
operation. Read moreSource§impl FromPrimitive for Ratio<i64>
impl FromPrimitive for Ratio<i64>
Source§fn from_i64(n: i64) -> Option<Ratio<i64>>
fn from_i64(n: i64) -> Option<Ratio<i64>>
Converts an
i64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_i128(n: i128) -> Option<Ratio<i64>>
fn from_i128(n: i128) -> Option<Ratio<i64>>
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 moreSource§fn from_u64(n: u64) -> Option<Ratio<i64>>
fn from_u64(n: u64) -> Option<Ratio<i64>>
Converts an
u64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u128(n: u128) -> Option<Ratio<i64>>
fn from_u128(n: u128) -> Option<Ratio<i64>>
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 moreSource§fn from_f32(n: f32) -> Option<Ratio<i64>>
fn from_f32(n: f32) -> Option<Ratio<i64>>
Converts a
f32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_f64(n: f64) -> Option<Ratio<i64>>
fn from_f64(n: f64) -> Option<Ratio<i64>>
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 moreSource§fn 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.Source§fn 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.Source§fn 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.Source§fn 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.Source§fn 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.Source§fn 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.Source§impl<'a, T> MulAssign<&'a Ratio<T>> for Ratio<T>
impl<'a, T> MulAssign<&'a Ratio<T>> for Ratio<T>
Source§fn mul_assign(&mut self, other: &Ratio<T>)
fn mul_assign(&mut self, other: &Ratio<T>)
Performs the
*=
operation. Read moreSource§impl<'a, T> MulAssign<&'a T> for Ratio<T>
impl<'a, T> MulAssign<&'a T> for Ratio<T>
Source§fn mul_assign(&mut self, other: &T)
fn mul_assign(&mut self, other: &T)
Performs the
*=
operation. Read moreSource§impl<T> MulAssign<T> for Ratio<T>
impl<T> MulAssign<T> for Ratio<T>
Source§fn mul_assign(&mut self, other: T)
fn mul_assign(&mut self, other: T)
Performs the
*=
operation. Read moreSource§impl<T> MulAssign for Ratio<T>
impl<T> MulAssign for Ratio<T>
Source§fn mul_assign(&mut self, other: Ratio<T>)
fn mul_assign(&mut self, other: Ratio<T>)
Performs the
*=
operation. Read moreSource§impl<T> Num for Ratio<T>
impl<T> Num for Ratio<T>
Source§fn from_str_radix(s: &str, radix: u32) -> Result<Ratio<T>, ParseRatioError>
fn from_str_radix(s: &str, radix: u32) -> Result<Ratio<T>, ParseRatioError>
Parses numer/denom
where the numbers are in base radix
.
type FromStrRadixErr = ParseRatioError
Source§impl<T> Ord for Ratio<T>
impl<T> Ord for Ratio<T>
Source§impl<T> PartialOrd for Ratio<T>
impl<T> PartialOrd for Ratio<T>
Source§impl<'a, T> RemAssign<&'a Ratio<T>> for Ratio<T>
impl<'a, T> RemAssign<&'a Ratio<T>> for Ratio<T>
Source§fn rem_assign(&mut self, other: &Ratio<T>)
fn rem_assign(&mut self, other: &Ratio<T>)
Performs the
%=
operation. Read moreSource§impl<'a, T> RemAssign<&'a T> for Ratio<T>
impl<'a, T> RemAssign<&'a T> for Ratio<T>
Source§fn rem_assign(&mut self, other: &T)
fn rem_assign(&mut self, other: &T)
Performs the
%=
operation. Read moreSource§impl<T> RemAssign<T> for Ratio<T>
impl<T> RemAssign<T> for Ratio<T>
Source§fn rem_assign(&mut self, other: T)
fn rem_assign(&mut self, other: T)
Performs the
%=
operation. Read moreSource§impl<T> RemAssign for Ratio<T>
impl<T> RemAssign for Ratio<T>
Source§fn rem_assign(&mut self, other: Ratio<T>)
fn rem_assign(&mut self, other: Ratio<T>)
Performs the
%=
operation. Read moreSource§impl<T> Signed for Ratio<T>
impl<T> Signed for Ratio<T>
Source§fn abs_sub(&self, other: &Ratio<T>) -> Ratio<T>
fn abs_sub(&self, other: &Ratio<T>) -> Ratio<T>
The positive difference of two numbers. Read more
Source§fn 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.
Source§fn 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.
Source§impl<'a, T> SubAssign<&'a Ratio<T>> for Ratio<T>
impl<'a, T> SubAssign<&'a Ratio<T>> for Ratio<T>
Source§fn sub_assign(&mut self, other: &Ratio<T>)
fn sub_assign(&mut self, other: &Ratio<T>)
Performs the
-=
operation. Read moreSource§impl<'a, T> SubAssign<&'a T> for Ratio<T>
impl<'a, T> SubAssign<&'a T> for Ratio<T>
Source§fn sub_assign(&mut self, other: &T)
fn sub_assign(&mut self, other: &T)
Performs the
-=
operation. Read moreSource§impl<T> SubAssign<T> for Ratio<T>
impl<T> SubAssign<T> for Ratio<T>
Source§fn sub_assign(&mut self, other: T)
fn sub_assign(&mut self, other: T)
Performs the
-=
operation. Read moreSource§impl<T> SubAssign for Ratio<T>
impl<T> SubAssign for Ratio<T>
Source§fn sub_assign(&mut self, other: Ratio<T>)
fn sub_assign(&mut self, other: Ratio<T>)
Performs the
-=
operation. Read more